import { ReactNode } from 'react';
import { ActionSheetItemProps } from './ActionSheetItem';
export interface ActionSheetProps {
    /** 标题 */
    title?: ReactNode;
    /** 操作项列表 */
    items: ActionSheetItemProps[];
    /** 按下时的不透明度 */
    activeOpacity?: number;
    /** 关闭文字 */
    cancelText?: string;
}
declare const ActionSheet: {
    (): null;
    displayName: string;
    show(props: ActionSheetProps): void;
};
export default ActionSheet;
//# sourceMappingURL=index.d.ts.map