import type { PackageSettingsMatch } from '@ms-cloudpack/common-types'; /** * Validate a package settings match object. * (As of writing, this just checks that negated matches don't have a version.) * @returns object with validation info (so the caller can log and/or throw as needed) */ export declare function validateMatch(match: PackageSettingsMatch): { isValid: false; error: string; } | { isValid: true; }; //# sourceMappingURL=validateMatch.d.ts.map