import { JSXOutput, PropsOf, QRL } from '@builder.io/qwik'; import { ToastAlign, ToastType } from './toast-type'; type ToastProps = PropsOf<'div'> & { id: string; type?: ToastType; time?: number; alignment?: ToastAlign; divide?: boolean; closable?: boolean; onClose$?: QRL<(id: string) => void>; icon?: JSXOutput; }; export declare const Toast: import("@builder.io/qwik").Component; export {};