import React from "react"; import { InputContextProps } from "./useInputBehaviour"; declare const InputContext: React.Context; export interface InputBehaviourProps { children?: React.ReactNode; } declare const InputBehaviour: ({ children }: InputBehaviourProps) => React.JSX.Element; export { InputContext, InputBehaviour };