import type { ComponentProps } from 'react'; import type { StyledInputTextProps } from './StyledInputText'; import { StyledInputText } from './StyledInputText'; import { inputStyle } from './inputStyle'; type InputProps = ComponentProps<'input'>; export interface BaseInputTextProps extends Omit, 'as'> { type?: InputProps['type']; /** @deprecated Please set width on container, not as a prop of an input */ width?: never; } export type InputTextProps = BaseInputTextProps & InputProps; declare const InputTextForwardRef: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; /** @deprecated use InputText from kitt-universal instead */ export declare const InputText: typeof InputTextForwardRef & { inputStyle: typeof inputStyle; StyledInputText: typeof StyledInputText; }; export {}; //# sourceMappingURL=index.d.ts.map