import { ViewProps } from "@tarojs/components/types/View"; import * as React from "react"; import { PickerColumnInstance, PickerOptionObject } from "./picker.shared"; export interface PickerColumnProps extends ViewProps { value: any; className?: string; readonly?: boolean; children?: PickerOptionObject[]; onChange?(option: PickerOptionObject, emitChange?: boolean): void; } declare const PickerColumn: React.ForwardRefExoticComponent & React.RefAttributes>; export default PickerColumn;