import type { A11yProps } from './commonTypes.js'; import type { IconProp } from './iconTypes.js'; export type ToastProps = A11yProps & { backgroundColor?: string; bottom?: number; duration?: number; fontSize?: number; icon?: IconProp; position?: 'top' | 'bottom'; text: string; textColor?: string; top?: number; visible: boolean; setVisible: (visible: boolean) => void; }; //# sourceMappingURL=toastTypes.d.ts.map