import type { ComponentProps, FC, PropsWithChildren } from 'react'; import type { Duration } from './ToastContext'; export interface FlowbiteToastTheme { base: string; closed: string; removed: string; toggle: { base: string; icon: string; }; } export interface ToastProps extends PropsWithChildren> { duration?: Duration; } export declare const Toast: FC & { Toggle: FC & import("react").ButtonHTMLAttributes & { xIcon?: FC> | undefined; }>; };