/** Content types commonly resolved via flat `cms-edit resolve --*-slug` flags. */ export declare const RESOLVE_BY_SLUG_CONTENT_TYPES: readonly ["page", "article", "articleType", "tagType", "tag"]; export type ResolveBySlugContentType = (typeof RESOLVE_BY_SLUG_CONTENT_TYPES)[number]; /** * Normalises CLI `--type` values (kebab-case, case) to Contentful content type IDs. * Throws when the type is empty or not a known slug-indexed type. */ export declare function normalizeResolveContentType(type: string): ResolveBySlugContentType; //# sourceMappingURL=resolve-content-type.d.ts.map