///
import { Theme } from 'styled-components';
type SelectInputProps = {
error: boolean;
};
export interface ThemedProps extends SelectInputProps {
theme: Theme;
}
export declare const Input: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLSelectElement>, ThemedProps>>;
export {};