import { CoreEntity, EProperties } from '@grandlinex/core';
export default class Translation extends CoreEntity {
    key: string;
    value: string;
    scope: string;
    t_lang: string;
    constructor(props?: EProperties<Translation>);
}
