import React from "react"; import type { FormHeightNames } from "../../../system/Sizes"; type NaturalLanguageFormContextValue = { height: FormHeightNames; }; export declare const NaturalLanguageFormContext: React.Context; export declare const useNaturalLanguageFormContext: () => NaturalLanguageFormContextValue; export {};