import { SelectHTMLAttributes } from "react";
interface InputSelectProps extends SelectHTMLAttributes<HTMLSelectElement> {
    error: string | null;
    disabled?: boolean;
    children: React.ReactNode;
}
export declare const InputSelect: ({ error, disabled, children, ...props }: InputSelectProps) => JSX.Element;
export default InputSelect;
