import type { CmcdResponse } from './CmcdResponse.js'; /** * Check if a key is a valid CMCD response key. * * @param key - The key to check. * * @returns `true` if the key is a valid CMCD request key, `false` otherwise. * * @group CMCD * * @beta * * @example * {@includeCode ../../test/cmcd/isCmcdResponseKey.test.ts#example} */ export declare function isCmcdResponseKey(key: string): key is keyof CmcdResponse; //# sourceMappingURL=isCmcdResponseKey.d.ts.map