import type { FC, DetailedHTMLProps, HTMLAttributes } from 'react'; export interface PharosSelectProps extends DetailedHTMLProps, HTMLElement> { /** * Indicates the value for the select. */ value?: string; /** * Name for the form element. */ name?: string; /** * Indicates if input is required. */ required?: boolean; /** * Indicates if input is disabled. */ disabled?: boolean; /** * Indicates an invalidated state. */ invalidated?: boolean; /** * Indicates a validated state. */ validated?: boolean; /** * The message to display below the input. */ message?: string; /** * Indicates if the label should be hidden. */ hideLabel?: boolean; } export declare const PharosSelect: FC; //# sourceMappingURL=pharos-select.d.ts.map