/** * Performs a rest spread on an object. * * @param source The source value. * @param propertyNames The property names excluded from the rest spread. */ export declare function rest(source: any, propertyNames: (string | symbol)[]): any;