export interface ElectronAPI { setCookie: (cookieString: string) => Promise; } declare global { interface Window { electronAPI: ElectronAPI; } }