import type { CmcdData } from './CmcdData.js'; import type { CmcdEncodeOptions } from './CmcdEncodeOptions.js'; import type { CmcdHeaderField } from './CmcdHeaderField.js'; /** * Convert a CMCD data object to request headers * * @param cmcd - The CMCD data object to convert. * @param options - Options for encoding the CMCD object. * * @returns The CMCD header shards. * * @group CMCD * * @beta * * @example * {@includeCode ../../test/cmcd/toCmcdHeaders.test.ts#example} */ export declare function toCmcdHeaders(cmcd: CmcdData, options?: CmcdEncodeOptions): Record; //# sourceMappingURL=toCmcdHeaders.d.ts.map