import { type ReactNode, type AllHTMLAttributes } from 'react'; export type ToastBarProps = { variant?: 'info' | 'success' | 'error'; className?: string; children?: ReactNode; time?: number; isPaused?: boolean; id?: string; onClose?: (id: string) => void; buttonLabel?: string; } & Omit, 'is'>; declare function ToastBar({ children, className, variant, time, isPaused, id, onClose, buttonLabel, ...props }: ToastBarProps): import("react/jsx-runtime").JSX.Element; export default ToastBar; //# sourceMappingURL=ToastBar.d.ts.map