import { UIComponentProps } from "../../utils/types.js"; import { TimeCore } from "@videojs/core"; //#region src/ui/time/time-value.d.ts interface ValueProps extends Omit, 'children'>, TimeCore.Props {} /** * Displays a formatted time value (current, duration, or remaining). * * @example * ```tsx * * * * ``` */ declare const Value: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; declare namespace Value { type Props = ValueProps; type State = TimeCore.State; } //#endregion export { Value, ValueProps }; //# sourceMappingURL=time-value.d.ts.map