import { default as React } from 'react'; import { ElectronAPI } from '@electron-toolkit/preload'; interface UseTitlebarActionOptions { onMinus?: () => void; onMinimizeMaximaze?: () => void; onClose?: () => void; toggleWindowMaximized: React.Dispatch>; } export declare function useTitlebarActions(ipcHandle: ElectronAPI['ipcRenderer'] | null, { toggleWindowMaximized, onMinus, onMinimizeMaximaze, onClose }: UseTitlebarActionOptions): { handleMinus: () => void; handleMinimazeMaximaze: () => Promise; handleClose: () => void; }; export {}; //# sourceMappingURL=useTitlebarActions.d.ts.map