import { BasicComponentProps } from "../../../types";
export interface CnBaseSelectDrawerProps extends BasicComponentProps {
    /**
     * 是否可见
     */
    visible?: boolean;
    /**
     * 抽屉的css类名
     */
    drawerClassName?: string;
    /**
     * 抽屉标题
     */
    drawerTitle?: string;
    /**
     * 点击取消事件
     */
    onCancel?: () => void;
    /**
     * 点击关闭事件
     */
    onClose?: () => void;
    /**
     * 点击确定事件
     */
    onOk?: () => void;
}
