import React from 'react';
import { IVeltTranscriptionCopyLinkButtonWireframe } from './VeltTranscriptionCopyLinkButtonWireframe/VeltTranscriptionCopyLinkButtonWireframe';
import { IVeltTranscriptionCopyLinkTooltipWireframe } from './VeltTranscriptionCopyLinkTooltipWireframe/VeltTranscriptionCopyLinkTooltipWireframe';
import { IVeltWireframeCommonProps } from '../../../constants';
export interface IVeltTranscriptionCopyLinkWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltTranscriptionCopyLinkWireframe extends React.FC<IVeltTranscriptionCopyLinkWireframeProps> {
    Button: IVeltTranscriptionCopyLinkButtonWireframe;
    Tooltip: IVeltTranscriptionCopyLinkTooltipWireframe;
}
declare const VeltTranscriptionCopyLinkWireframe: IVeltTranscriptionCopyLinkWireframe;
export default VeltTranscriptionCopyLinkWireframe;
