import * as React from 'react'; interface ActionSheetStandardOptions { maskClosable?: boolean; title?: React.ReactNode; onClose?: () => void; content?: React.ReactNode | React.ReactNode[]; } declare function createStandard(options?: ActionSheetStandardOptions): { prev: () => void; next: () => void; close: () => void; }; export default createStandard;