import React from 'react'; import { DefaultProps } from '../theme'; export interface AlertProps extends DefaultProps { /** Icon of Alert */ icon?: React.ReactNode; /** Whether to show icon */ showIcon?: boolean; /** Optional alert title */ title?: React.ReactNode; /** Alert message */ children: React.ReactNode; /** Alert color */ type?: 'default' | 'info' | 'warning' | 'error'; /** Whether Alert can be closed */ closable?: boolean; } export declare const Alert: import("../utils/types").ComponentWithAs<"div", AlertProps>; //# sourceMappingURL=Alert.d.ts.map