import { CnActionSheetProps } from './cn-action-sheet-props';
interface CustomProps {
    clsPrefix?: string;
    options: MenuOptionsProps[];
}
export interface MenuOptionsProps {
    label?: string;
    props?: {
        label?: string;
        children?: string;
    };
}
export type MenuActionSheetProps = Pick<CnActionSheetProps, 'onClick' | 'onClose' | 'disabledIndexes'> & CustomProps;
export {};
