import React, { ReactNode } from 'react'; import type { IDropdownBodyProps, IHasCX, IHasRawProps } from '@epam/uui-core'; import { DropdownContainerProps } from '../overlays'; export interface IMobileDropdownWrapperProps extends IHasCX, IHasRawProps>, IDropdownBodyProps, Pick { /** * Children of the dropdown container. */ children: ReactNode; /** * Title of the dropdown container. */ title?: string; /** * Callback for keyboard events. */ onKeyDown?(e: React.KeyboardEvent): void; /** * Whether to lock focus on the dropdown container. */ focusLock?: boolean; /** * Width of the dropdown container. */ width?: number | 'auto'; /** * Maximum width of the dropdown container. * @default 'auto' */ maxWidth?: number | 'auto'; /** * Maximum height of the dropdown container. * @default 'auto' */ maxHeight?: number; } export declare const PickerBodyMobileView: React.FC; //# sourceMappingURL=PickerBodyMobileView.d.ts.map