import React from "react"; import { InputContextProps } from "./useInputBehaviour"; import { InputBehaviourProps } from "./input-behaviour.component"; declare const InputGroupContext: React.Context; export interface InputGroupBehaviourProps extends InputBehaviourProps { blockGroupBehaviour?: boolean; } declare const InputGroupBehaviour: ({ children, blockGroupBehaviour, }: InputGroupBehaviourProps) => React.JSX.Element; export { InputGroupContext, InputGroupBehaviour };