import { type LogLevel } from 'remotion'; export type BackgroundKeepalive = { waitForTick: () => Promise; [Symbol.dispose]: () => void; }; export declare function createBackgroundKeepalive({ fps, logLevel }: { fps: number; logLevel: LogLevel; }): BackgroundKeepalive;