import { Section } from "./section"; import { SystemField } from "./system-field"; export declare class SitePage extends SystemField { name?: string; image?: string; sections?: Section[]; all_sections?: Section[]; langs?: any; } export declare class SitePagesTranslate extends SystemField { lang_code?: string; title?: string; short_desc?: string; site_pages_id?: string; } export declare class ThemePage extends SitePage { }