/** * Recipe configuration for the MultilineTextInput component. * Defines the styling variants and base styles using Chakra UI's recipe system. */ export declare const multilineTextInputRecipe: import('@chakra-ui/react').SlotRecipeDefinition<"root" | "textarea" | "leadingElement", { size: { sm: { root: { minH: "800"; textStyle: "sm"; gap: "100"; pl: "300"; }; textarea: { pr: "300"; py: "100"; }; leadingElement: { pt: "200"; "& svg": { boxSize: "400"; }; }; }; md: { root: { minH: "1000"; textStyle: "md"; gap: "200"; pl: "400"; }; textarea: { py: "200"; pr: "400"; }; leadingElement: { pt: "200"; "& svg": { mt: "50"; boxSize: "500"; }; }; }; }; variant: { solid: { root: { "--border-width": "sizes.25"; "--border-color": "colors.neutral.7"; backgroundColor: "neutral.1"; _hover: { backgroundColor: "primary.2"; }; }; }; ghost: { root: { _hover: { backgroundColor: "primary.2"; }; }; }; }; }>;