/** * Object used to represent labels identifying a resource. */ export type Labels = Record; /** * Interface for objects that have labels. */ export interface WithLabels { labels: T; } /** * Interface for objects that have labels. */ export interface WithOptionalLabels { labels?: T; } /** * Returns true if the source object has all the labels from the required set * @param source Source object to check against * @param required Set of labels to check for in source * @returns True of the source object has all the labels from the required set */ export declare const hasAllLabels: (source?: Labels, required?: Labels) => boolean; //# sourceMappingURL=Labels.d.ts.map