import type { Cmcd } from './Cmcd.js'; /** * Filter function for CMCD v1 keys. * * @param key - The CMCD key to filter. * * @returns `true` if the key should be included, `false` otherwise. * * @group CMCD * * @beta * * @example * {@includeCode ../../test/cmcd/isCmcdV1Key.test.ts#example} */ export declare function isCmcdV1Key(key: string): key is keyof Cmcd; //# sourceMappingURL=isCmcdV1Key.d.ts.map