import { ReactNode } from 'react'; export interface SelectProps { children?: ReactNode; onChange?: (value: any) => void; hasError?: boolean; label?: ReactNode; disabled?: boolean; value?: any; direction?: 'top' | 'bottom'; } export declare const Select: ({ hasError, disabled, direction, children, onChange, label, value }: SelectProps) => JSX.Element;