///
import { AlertProps } from '../Alert';
export declare type LocalToastProps = {
countdown?: number;
};
export declare type ToastProps = AlertProps & LocalToastProps;
export declare const Toast: import("react").ForwardRefExoticComponent & import("react").RefAttributes> & {
displayName?: string;
useProps: (props?: Partial, config?: {
disableCSSProps?: string[];
themeKey?: string;
}) => any;
};