import { FC, ReactNode } from 'react'; import { NativeProps } from '../_util/withNativeProps'; import { TdPickerProps } from './type'; export interface PickerProps extends TdPickerProps, NativeProps { children?: ReactNode; } declare const Picker: FC; export default Picker;