import { default as React } from 'react';
import { IStyledComponent } from 'styled-components';
interface SelectProps extends React.InputHTMLAttributes<HTMLSelectElement> {
    children?: React.ReactNode;
    $wrapperClassName?: string;
    $label?: string;
    $size?: "default" | "big" | "small";
    $error?: boolean;
    $success?: boolean;
    $fullWidth?: boolean;
}
export declare const StyledIconWrapper: IStyledComponent<"web", SelectProps>;
declare const Select: React.ForwardRefExoticComponent<SelectProps & React.RefAttributes<HTMLSelectElement>>;
export { Select };
