import { ForwardRefExoticComponent } from 'react';
import { ActionSheetProps, LocaleType } from './action-sheet';
import open, { ActionSheetWrapperProps } from './open';
import './styles/index.scss';
export interface ActionSheetComponent extends ForwardRefExoticComponent<ActionSheetProps> {
    show: typeof open;
}
declare const ExpandedActionSheet: ActionSheetComponent;
export { ActionSheetProps, ActionSheetWrapperProps, LocaleType };
export default ExpandedActionSheet;
