import { StandardProps } from '@tarojs/components'; import { FC } from 'react'; import { AlignType, CustomObj } from '../../common/type-utils'; declare type BaseActiveDropdownMenuProps = { showStatus: boolean; mask: boolean; circle: number | string; options: Array>; defaultIdx: number; textAlign: AlignType; isVertical: boolean; txtKey: string; descKey: string; title: string; description: string; cancelTxt: string; loading: boolean; onCancel: () => void; onChoose: (item?: any, index?: number) => void; onScrollLower: () => void; }; declare const YgActionSheet: FC & StandardProps>; export default YgActionSheet;