import { ButtonControlControl } from './ButtonControl.types';
declare const CLASS_PREFIX = "md-button-control";
declare const DEFAULTS: {};
declare const CONTROLS: Record<string, ButtonControlControl>;
declare const ICONS: {
    close: string;
    favorite: string;
    maximize: string;
    minimize: string;
    mute: string;
};
declare const STYLE: {
    wrapper: string;
};
export { CLASS_PREFIX, CONTROLS, DEFAULTS, ICONS, STYLE };
