/** * Resolve and normalize the content type for a call to a CmsContent component. * * When the contentType provided is invalid, it will try to resolve the * contentType from the fragmentData, if provided. * * @param contentType The content type received by the CmsContent * component * @param fragmentData The data received to render the CmsContent * @returns The content type */ export declare function resolveContentType(contentType: string | (string | null)[] | null | undefined, fragmentData?: { [fieldname: string]: any; }): string[] | undefined; export default resolveContentType;