import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
export interface IVeltButtonWireframeProps extends IVeltWireframeCommonProps {
    id?: string;
    disabled?: boolean;
    active?: boolean;
    type?: 'button' | 'button-toggle' | 'multi-select' | 'single-select';
    group?: string;
}
declare const VeltButtonWireframe: React.FC<IVeltButtonWireframeProps>;
export default VeltButtonWireframe;
