export type ToastT = { id?: string | number; title: React.ReactNode; description?: React.ReactNode; icon?: React.ReactNode; action?: React.ReactNode; onClick?: () => unknown; duration?: number; dismissible?: boolean; }; export type ShowMessageOptions = Pick; //# sourceMappingURL=types.d.ts.map