export declare class ActionSheetComponent {
    props: {
        prefixCls: string;
        cancelButtonText: string;
    };
    flag: string;
    title: string;
    message: string;
    transitionName: string;
    maskTransitionName: string;
    activeClassName: string[];
    onPress: any;
    constructor();
    showShare(flag: any): {
        [x: string]: boolean;
    };
    isTemplateRef(value: any): boolean;
    isArray(options: any, value: any): boolean;
}
