UNPKG

459 BTypeScriptView Raw
1import { type HTMLChakraProps, type RecipeProps, type UnstyledProp } from "../../styled-system";
2export interface InputBaseProps extends RecipeProps<"input">, UnstyledProp {
3}
4export interface InputProps extends HTMLChakraProps<"input", InputBaseProps> {
5}
6export declare const Input: import("react").ForwardRefExoticComponent<InputProps & import("react").RefAttributes<HTMLInputElement>>;
7export declare const InputPropsProvider: React.Provider<InputProps>;