import type { ToastState } from '../../schema';
type Props = {
    key: string;
    onClose: () => void;
    onRef: (element?: HTMLDivElement) => void;
    toastState: ToastState;
};
export declare const InternalToast: ({ key, onClose, onRef, toastState }: Props) => any;
export {};
