/** renders helper types for --localization flag */ export default function renderLocalizedTypes(localization: boolean): "\n export type LocalizedField = Partial>\n \n // We have to use our own localized version of Asset because of a bug in contentful https://github.com/contentful/contentful.js/issues/208\n export interface Asset {\n sys: Sys\n fields: {\n title: LocalizedField\n description: LocalizedField\n file: LocalizedField<{\n url: string\n details: {\n size: number\n image?: {\n width: number\n height: number\n }\n }\n fileName: string\n contentType: string\n }>\n }\n toPlainObject(): object\n }\n " | null;