import * as React from 'react'; import { CSSModule } from './index'; type Omit = Pick>; export type CustomInputType = | 'select' | 'file' | 'radio' | 'checkbox' | 'switch' | 'range'; export interface CustomInputProps extends Omit, 'id'> { [key: string]: any; id: string | number; type: CustomInputType; label?: React.ReactNode; inline?: boolean; valid?: boolean; invalid?: boolean; bsSize?: 'lg' | 'sm'; htmlFor?: string; cssModule?: CSSModule; innerRef?: React.Ref; } declare class CustomInput extends React.Component {} export default CustomInput;