import React from 'react'; export interface IOption { label: string; value: string; } export interface SelectProps { name: string; label?: string | JSX.Element; isFlex?: boolean; hasBar?: boolean; inputBg?: string; noMargin?: boolean; hasBorder?: boolean; placeholder?: string; inputBoxShadow?: string; optionsSelect: IOption[]; borderWithBar?: boolean; fontSizeFamilyLabel?: string; fontSizeFamilyInput?: string; } export interface ISelect { configs: SelectProps; } export declare function SelectComponent({ configs, ...rest }: ISelect): React.JSX.Element;