import { ElementType } from './editors.interface'; type Organization = string; export type TranslationBase = { attribute: Record; attribute_value: Record; group_header: { [title: string]: string; }; element: { [type: ElementType]: string; }; }; export type OrganizationTranslations = TranslationBase & { typeOverrides: Record & { name: string; }>; navigation: { [title: string]: string; }; tabs: { [title: string]: string; }; buttons: { [title: string]: string; }; }; export type TranslationData = TranslationBase & { gis_layer: { [layer: string]: string; }; organization?: Record; }; export interface LanguageResponse { [key: string]: { code: string; name: string; locale: string; }; } export {};