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