import type { Control } from './create-control'; import React, { type ComponentType } from 'react'; import { type OnValueChanged, type OnValueChanging, type PickerItem } from '../base'; type RequiredPickerProps = { data: ReadonlyArray>; value?: unknown; extraValues?: unknown[]; onValueChanging?: OnValueChanging>; onValueChanged?: OnValueChanged>; _enableSyncScrollAfterScrollEnd?: boolean; _onScrollStart?: () => void; _onScrollEnd?: () => void; }; export type WithPickerControlProps = PickerPropsT & { pickerName: string; control: Control; }; export declare const withPickerControl: (PickerComponent: ComponentType) => React.NamedExoticComponent> & React.RefAttributes>>>; export {}; //# sourceMappingURL=withPickerControl.d.ts.map