import React from "react"; import { type FormFieldSize } from "../../../types/general.types"; import type { FormHeightNames } from "../../../system/Sizes"; import "./StyledSelect.scss"; export declare const StyledSelect: React.ForwardRefExoticComponent, HTMLSelectElement>, "ref">, "width"> & { children?: React.ReactNode; suffix?: string; prefix?: string; width?: FormFieldSize | [FormFieldSize, FormFieldSize?, FormFieldSize?, FormFieldSize?, FormFieldSize?]; height?: FormHeightNames; isError?: boolean; } & React.RefAttributes>;