export interface KnapsackSettingsStoreConfig {
    dataDir: string;
    publicDir: string;
}
/**
 * Knapsack Settings
 */
export interface KnapsackSettings {
    /**
     * The title of the site
     */
    title: string;
    /**
     * Site subtitle
     */
    subtitle?: string;
    slogan?: string;
    /**
     * Settings related to the parent brand that owns/uses the design system
     */
    parentBrand?: {
        /**
         * Title/name of the parent brand
         */
        title?: string;
        /**
         * URI of homepage of parent brand
         */
        homepage?: string;
        /**
         * URI of image file for brand logo
         */
        logo?: string;
    };
}
//# sourceMappingURL=knapsack.settings.d.ts.map