import React from 'react';
import type { CnButtonProps } from "../../cn-button";
export interface CnDrawerButtonProps extends CnButtonProps {
    /**
     * 内容
     */
    children?: string | React.ReactNode;
    /**
     * 是否可见
     */
    visible?: boolean;
}
