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