import * as React from 'react'; export interface PickerProps { label?: React.ReactNode; border?: boolean; required?: boolean; icon?: string; disabled?: boolean; pickerAlign?: string; options?: any[]; value?: string; placeholder?: string; children?: React.ReactNode; onChange?: (e: any) => void; } declare const Picker: (props: PickerProps) => JSX.Element; export default Picker;