import { ReactNode } from 'react'; import { ToastPosition } from './ToastPositionHelpers'; export type ToastStatus = 'success' | 'error' | 'warning' | 'info'; export type ToastProps = { open: boolean; message: ReactNode; onClose: () => void; status?: ToastStatus; position?: ToastPosition; autoDismiss?: boolean; duration?: number; icon?: React.ReactNode; width?: React.CSSProperties['width']; withProgressBar?: boolean; style?: React.CSSProperties; }; export declare const useGetBackgroundColor: (status: string) => string; declare function Toast({ open, message, onClose, position, status, autoDismiss, duration, icon, width, withProgressBar, style, }: ToastProps): import("react/jsx-runtime").JSX.Element | null; export { Toast }; //# sourceMappingURL=Toast.component.d.ts.map