/** * @Restricted Decorator * * Marks a DTO property as restricted to specific permissions. * When a request passes through the global `RestrictedFieldsPipe`, * these properties will be removed if the requesting account does not * have all required permissions. * * @param {...string[]} perms - One or more permissions required to retain this field. */ export declare function Restricted(perms?: string | string[]): PropertyDecorator; export declare function UseRestricted(): ClassDecorator;