import React from 'react'; import { BaseSkeletonProps } from '../Skeleton'; export type SelectOption = { value: string; label: string; }; export type BaseProps = { name: string; label: string; options: SelectOption[]; value?: string | null; placeholder?: string; hideLabel?: boolean; animated?: boolean; disabled?: boolean; touched?: boolean; error?: string; help?: string; condensed?: string; onChange?: (event: React.ChangeEvent) => void; onBlur?: (event: React.FocusEvent) => void; onFocus?: (event: React.FocusEvent) => void; }; interface SkeletonProps extends BaseSkeletonProps, BaseProps { skeleton?: boolean; } export type Props = BaseProps | SkeletonProps; declare const Select: React.ForwardRefExoticComponent>; export default Select;