import type { PickerBaseProps } from "../picker/picker"; import type { PickerOptionObject } from "../picker/picker.shared"; import type { AreaData } from "./area-picker.shared"; export type AreaPickerProps = Omit & { depth?: number; areaList?: AreaData; defaultValue?: string[]; value?: string[]; onChange?(values: string[], option: PickerOptionObject, column: PickerOptionObject): void; onConfirm?(values: string[], option: PickerOptionObject[]): void; onCancel?(values: string[], option: PickerOptionObject[]): void; }; declare function AreaPicker({ areaList: areaListProp, depth: depthProp, children: childrenProps, value: valueProp, defaultValue, onChange: onChangeProp, onConfirm: onConfirmProp, onCancel: onCancelProp, ...restProps }: AreaPickerProps): JSX.Element; export default AreaPicker;