import { AlertProps } from 'antd';

export type AlertWrapperProps = AlertProps & {
	size?: "small" | "default" | "large";
};
/**
 * antd Alert 无法控制内边距，此组件扩展size属性
 */
export declare const AlertWrapper: (props: AlertWrapperProps) => import("react").JSX.Element;

export {};
