import type { TimeFieldVariants } from "@heroui/styles"; import type { ComponentPropsWithRef } from "react"; import type { TimeValue } from "react-aria-components/TimeField"; import { TimeField as TimeFieldPrimitive } from "react-aria-components/TimeField"; interface TimeFieldRootProps extends ComponentPropsWithRef>, TimeFieldVariants { } declare function TimeFieldRoot({ children, className, fullWidth, ...props }: TimeFieldRootProps): import("react/jsx-runtime").JSX.Element; export { TimeFieldRoot }; export type { TimeFieldRootProps };