import type { Theme } from '../capture-api/theming/Theme';
import type { Branding } from '../capture-api/theming/Branding';
export type V15Theme = Theme & {
    /**
     * @deprecated Internal type: Temporary until fonts are officially supported through the theming API
     */
    googleFonts?: string[];
    /**
     * @deprecated Internal type: Temporary until fonts are officially supported through the theming API
     */
    customFonts?: string[];
    /**
     * @deprecated Internal type only
     */
    version?: 'v2' | 'v3';
    /**
     * @deprecated Internal type only
     */
    branding?: Branding & {
        legacy?: boolean;
    };
};
