declare module '*.scss' { const content: Record; export default content; } type ListenerType = (event: 'string', args: unknown[]) => void; declare global { interface Window { ipcRenderer: { send: (channel: string, args?: string | object) => void; on: (channel: string, listener: ListenerType) => void; }; process: { type: string; }; } } export default {};