carbon-react
Version:
A library of reusable React components for easily building user interfaces.
9 lines (8 loc) • 348 B
TypeScript
import React from "react";
import { InputContextProps } from "./useInputBehaviour";
declare const InputContext: React.Context<InputContextProps>;
export interface InputBehaviourProps {
children?: React.ReactNode;
}
declare const InputBehaviour: ({ children }: InputBehaviourProps) => React.JSX.Element;
export { InputContext, InputBehaviour };