import { ViewProps } from "@tarojs/components/types/View"; import { CSSProperties, ReactNode } from "react"; export interface PickerOptionProps extends ViewProps { className?: string; style?: CSSProperties; value?: any; label?: ReactNode; disabled?: boolean; children?: ReactNode; } export default function PickerOption(props: PickerOptionProps): JSX.Element;