import { RecordedData, RecorderLayoutMode } from '@veltdev/types';
import React from 'react';
export interface IVeltRecorderControlPanelProps {
    mode?: RecorderLayoutMode;
    panelId?: string;
    onRecordedData?: (data: RecordedData) => void;
    recordingCountdown?: boolean;
    recordingTranscription?: boolean;
    videoEditor?: boolean;
    settingsEmbedded?: boolean;
    autoOpenVideoEditor?: boolean;
    playVideoInFullScreen?: boolean;
    retakeOnVideoEditor?: boolean;
    pictureInPicture?: boolean;
    maxLength?: number;
    videoEditorTimelinePreview?: boolean;
}
declare const SnippylyRecorderControlPanel: React.FC<IVeltRecorderControlPanelProps>;
export default SnippylyRecorderControlPanel;
