import { AnyFunction, BaseProps } from '../base'; import { PickerViewColumn } from './PickerViewColumn'; export { PickerViewColumn }; export interface PickerViewProps extends BaseProps { value?: number[]; onChange?: (event: { detail: { value: number[]; }; }) => void; immediateChange?: boolean; onPickEnd?: AnyFunction; maskClass?: string; indicatorStyle?: string; indicatorClass?: string; } export declare const PickerView: (props: PickerViewProps) => import("react/jsx-runtime").JSX.Element;