import { RecorderMode } from '@veltdev/types';
import React from 'react';
export interface IVeltRecorderToolProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    type?: RecorderMode;
    panelId?: string;
    buttonLabel?: string;
    darkMode?: boolean;
    shadowDom?: boolean;
    recordingCountdown?: boolean;
    variant?: string;
    retakeOnVideoEditor?: boolean;
    pictureInPicture?: boolean;
    maxLength?: number;
}
declare const SnippylyRecorderTool: React.FC<IVeltRecorderToolProps>;
export default SnippylyRecorderTool;
