import type SynergyElement from '../../internal/synergy-element.js'; import { type ComponentNamesWithDefaultValues } from './base.js'; type Constructor = new (...args: any[]) => T; /** * Global settings decorator for a synergy component * Used in conjunction with the global settings event * * @param name The components name. This is used to get the default values for the component * @returns Decorated class for usage with synergy components */ export declare function enableDefaultSettings(name: ComponentNamesWithDefaultValues): >(Proto: T) => T; export {};