import { KendoComponent } from '../_types/component';
export declare const NOTIFICATION_CLASSNAME = "k-notification";
declare const options: {
    themeColor: ("base" | "error" | "inverse" | "success" | "primary" | "secondary" | "tertiary" | "info" | "warning" | undefined)[];
};
export type KendoNotificationOptions = {
    themeColor?: (typeof options.themeColor)[number] | null;
};
export type KendoNotificationProps = KendoNotificationOptions & {
    actions?: React.JSX.Element | React.JSX.Element[];
    closable?: boolean;
    text?: string;
    icon?: string;
};
export declare const Notification: KendoComponent<KendoNotificationProps & React.HTMLAttributes<HTMLDivElement>>;
export default Notification;
