/*! * Ecctrl * https://github.com/pmndrs/ecctrl * * SPDX-FileCopyrightText: 2023-2026 Erdong Chen * SPDX-License-Identifier: MIT */ import type { RefObject } from "react"; type TimeControlValue = number | RefObject; export type TimeControlProps = { paused?: boolean; timeScale?: TimeControlValue; maxDelta?: TimeControlValue; }; export declare function TimeControl({ paused, timeScale, maxDelta }: TimeControlProps): null; export {};