import React from 'react'; import type { ActionSheetProps } from './ActionSheet'; type ActionSheetListProps = Pick & { onSelected?: (idx: number) => void; }; export declare function ActionSheetList(props: ActionSheetListProps): React.JSX.Element; export {};