type Action = { label: string; onClick: (event?: MouseEvent) => void; }; export declare function useStatusToast(): { update: (options: { text: string; loading?: boolean; progress?: number; timeout?: number | null; icon?: string; actions?: Action[]; }) => void; clear: () => void; text: any; loading: any; visible: any; progress: any; icon: any; actions: any; }; export {};