import { FiltersMap } from '@wix/bex-core'; import { CSSProperties, ReactElement } from 'react'; import { PickerStandaloneState } from '../../state'; import { PickerProps } from '../Picker'; import { TextButtonProps } from '@wix/design-system'; export interface PickerStandaloneLayoutProps { state: PickerStandaloneState; children?: ReactElement>; createNewAction?: ReactElement; renderError: (params: { err: unknown; isOnline: boolean; }) => ReactElement; defaultTitle?: string; defaultSubtitle?: string; titleMaxLines?: number; hideSearch?: boolean; height?: CSSProperties['height']; maxHeight?: CSSProperties['maxHeight']; width?: CSSProperties['width']; } declare function _PickerStandaloneLayout(props: PickerStandaloneLayoutProps): JSX.Element; export declare const PickerStandaloneLayout: typeof _PickerStandaloneLayout & { displayName: string; }; export {}; //# sourceMappingURL=PickerStandaloneLayout.d.ts.map