import React from 'react';
export declare const TimelineVideoInfo: React.FC<{
    readonly src: string;
    readonly visualizationWidth: number;
    readonly naturalWidth: number;
    readonly trimBefore: number;
    readonly durationInFrames: number;
    readonly playbackRate: number;
    readonly volume: string | number;
    readonly doesVolumeChange: boolean;
    readonly premountWidth: number;
    readonly postmountWidth: number;
}>;
