import { GsbProperty } from './gsb-entity-def.model';
import { GsbModule } from './gsb-module.model';
export declare class GsbCodeGenerator {
    _entDefName?: string;
    id?: string;
    day?: boolean;
    properties?: GsbProperty[];
    month?: boolean;
    text?: string;
    name?: string;
    year?: boolean;
    module?: GsbModule;
    digits?: number;
    module_id?: string;
    title?: string;
    lastUpdateDate?: Date;
    lastIndex?: number;
    constructor(obj?: Partial<GsbCodeGenerator>);
}
