import { IkasThemeJsonComponentProp } from "./prop"; export declare type IkasThemeJsonComponent = { id: string; dir: string; displayName?: string; description?: string; props: IkasThemeJsonComponentProp[]; isHeader: boolean; isFooter: boolean; translations?: { [locale: string]: IkasThemeJsonComponentTranslation; }; defaultPropValuesTranslations: { [locale: string]: any; }; defaultPropValues?: Record; commonPropValues?: Record | null; }; export declare type IkasThemeJsonComponentTranslation = { displayName: string | null; description: string | null; };