import React, { PropsWithoutRef, RefAttributes } from 'react'; import { CSS } from '../theme/stitches.config'; import Textarea from '../textarea'; import InputPassword from './input-password'; import { Props, FormElement, defaultProps } from './input-props'; declare type NativeAttrs = Omit, keyof Props>; export declare type InputProps = Props & typeof defaultProps & NativeAttrs & { css?: CSS; }; declare type InputComponent = React.ForwardRefExoticComponent & RefAttributes> & { Textarea: typeof Textarea; Password: typeof InputPassword; }; declare type ComponentProps = Partial & Omit & NativeAttrs & { css?: CSS; }; declare const _default: InputComponent; export default _default;