import type { BaseField, CollectionWithDefaults, Entry } from '../interface'; import type FileFormatter from './FileFormatter'; export declare const frontmatterFormats: string[]; export declare const formatExtensions: { yml: string; yaml: string; toml: string; json: string; frontmatter: string; 'json-frontmatter': string; 'toml-frontmatter': string; 'yaml-frontmatter': string; }; export declare const extensionFormatters: Record; export declare function resolveFormat(collection: CollectionWithDefaults, entry: Entry): FileFormatter | undefined;