import React from 'react'; import { SheetProps } from '../sheet'; export interface ShowOptions extends Pick { /** * 操作项 */ items: { label: React.ReactNode; value: string | number; }[]; /** * 标题 */ title?: React.ReactNode; /** * 标题类名 */ titleCls?: string; /** * 子项类名 */ itemCls?: string; /** * 样式 */ style?: React.CSSProperties; /** * 类名 */ className?: string; } export declare const showOptions: ({}: ShowOptions) => void; declare const ActionSheet: { (): React.JSX.Element; show(options: ShowOptions): Promise; hide(): void | undefined; }; export default ActionSheet;