import { Config, DataFormat } from '../config'; import { FormFieldWithFile } from '../DocumentEditor/component-blocks/api'; export declare function getCollectionPath(config: Config, collection: string): string; export declare function getCollectionFormat(config: Config, collection: string): FormatInfo; export declare function getSingletonFormat(config: Config, singleton: string): FormatInfo; export declare function getCollectionItemPath(config: Config, collection: string, slug: string): string; export declare function getCollectionItemSlugSuffix(config: Config, collection: string): string; export declare function getSingletonPath(config: Config, singleton: string): string; export declare function getDataFileExtension(formatInfo: FormatInfo): string; export type FormatInfo = DataFormat | { frontmatter: DataFormat; contentFieldKey: string; contentFieldConfig: FormFieldWithFile & { serializeToFile: { kind: 'multi'; }; }; };