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