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