import type { ComponentType, LazyExoticComponent } from 'react';
import React from 'react';
import type { TimelineContextValue } from 'remotion';
export declare const PLAYER_COMP_ID = "player-comp";
export declare const SharedPlayerContexts: React.FC<{
    children: React.ReactNode;
    timelineContext: TimelineContextValue;
    fps: number;
    compositionWidth: number;
    compositionHeight: number;
    durationInFrames: number;
    component: LazyExoticComponent<ComponentType<unknown>>;
    numberOfSharedAudioTags: number;
    initiallyMuted: boolean;
}>;
