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