import type { JtInternalCommonSchema } from "@paroicms/public-server-lib";
import type { LocalizedTranslations } from "./read-locales.js";
import type { ParsedSiteSchema } from "./site-schema-lib-reader.js";
export interface CommonSchemaLibrary {
    common: CommonSchema;
    defaultLib: ParsedSiteSchema[];
}
export interface CommonSchema extends JtInternalCommonSchema {
    l10n: LocalizedTranslations;
    languageLabels: {
        [language: string]: string;
    };
}
