/** * Recipe configuration for the TimeInput component. * Defines the styling variants and base styles using Chakra UI's recipe system. */ export declare const timeInputRecipe: import('@chakra-ui/react').SlotRecipeDefinition<"root" | "leadingElement" | "trailingElement" | "segmentGroup" | "segment", { size: { sm: { root: { h: number; gap: number; px: number; }; segment: { textStyle: "sm"; }; leadingElement: { "& svg": { boxSize: "400"; }; }; trailingElement: { "& svg": { boxSize: "400"; }; }; }; md: { root: { h: number; gap: number; px: number; }; segment: { textStyle: "md"; }; leadingElement: { "& svg": { boxSize: "500"; }; }; trailingElement: { "& svg": { 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"; }; }; }; }; }>;