import React from 'react'; export type ActionSheetOption = { label: string; value: number | string; }; export type ActionOptions = { label: string; value: number | string; testID?: string; }; export type ActionSheetProps = { actions: Array; showCancel?: boolean; cancelCta?: string; onClose: () => void; onPick: (action: ActionSheetOption) => void; onCancel?: () => void; testID?: string; cancelCtaTestID?: string; }; declare const ActionSheet: ({ actions, cancelCta, onClose, onCancel, onPick, testID, cancelCtaTestID, }: ActionSheetProps) => React.JSX.Element; export default ActionSheet;