export interface ActionSheetHeaderProps { isHidden?: boolean; onClose?: () => void; title: string; } export declare const ActionSheetHeader: ({ isHidden, onClose, title }: ActionSheetHeaderProps) => JSX.Element;