import { ReactNode } from 'react'; export type NotificationProps = { duration?: number; isClosable?: boolean; description?: ReactNode; icon?: ReactNode; status?: 'info' | 'warning' | 'success' | 'error'; title: ReactNode; btns?: { text: string; onClick?(): void; variant?: string; }[]; }; declare const useNotification: () => ({ isClosable, status, title, description, btns, icon, ...rest }: NotificationProps) => void; export default useNotification;