import './style'; import { show, close } from './ActionSheetMethod'; import type { ActionSheetProps } from './ActionSheet'; type ActionSheetWithMethods = React.FC & { show: typeof show; close: typeof close; }; export * from './type'; export declare const ActionSheet: ActionSheetWithMethods; export default ActionSheet;