import * as React from "react"; import { ToastProps } from "./Toast"; export declare const DEFAULT_DELAY_TIME = 3000; type Toast = React.ReactElement; interface ToasterProps { /** * Timer before toast is auto-dismissed */ dismissTime?: number; /** * Human-readable selector used for writing tests */ "data-cy"?: string; /** * Allows custom styling */ className?: string; /** * Children should use the Toast component */ children?: Toast | Toast[]; } declare const _default: ({ dismissTime, children, className, "data-cy": dataCy }: ToasterProps) => React.JSX.Element; export default _default;