import { DecoratorAttributeConfiguration } from '@microsoft/fast-element'; type ExtendedDecoratorAttributeConfiguration = DecoratorAttributeConfiguration & { deprecatedName?: string; }; /** * ALL FOLLOWING CODE FROM FAST IMPLEMENTATION EXCEPT THE `deprecatedName` HANDLING */ /** * Decorator: Specifies an HTML attribute. * @param config - The configuration for the attribute. * @public */ export declare function deprecatedAttr(config?: ExtendedDecoratorAttributeConfiguration): (target: {}, property: string) => void; /** * Decorator: Specifies an HTML attribute. * @param target - The class to define the attribute on. * @param prop - The property name to be associated with the attribute. * @public */ export declare function deprecatedAttr(target: {}, prop: string): void; export {}; //# sourceMappingURL=deprecated-attr.d.ts.map