import React from 'react';
export interface IVeltRecorderPlayerProps {
    recorderId?: string;
    onDelete?: Function;
    /**
     * @deprecated Use `summary` instead.
     */
    showSummary?: boolean;
    summary?: boolean;
    shadowDom?: boolean;
    videoEditor?: boolean;
    playVideoInFullScreen?: boolean;
    retakeOnVideoEditor?: boolean;
    playbackOnPreviewClick?: boolean;
}
declare const SnippylyRecorderPlayer: React.FC<IVeltRecorderPlayerProps>;
export default SnippylyRecorderPlayer;
