import { CoreEntity } from '@grandlinex/core';
export default class Language extends CoreEntity {
    label: string;
    constructor(props?: {
        code: string;
        label: string;
    });
}
