import { EAppMode } from '../enums';
import { INatigo } from '../interfaces/i-natigo';
export declare class NatiGoEntity implements INatigo {
    documentVerificationAllowed: boolean;
    isForAdultsOnly: boolean;
    openLockRequired: boolean;
    syncAt: Date;
    type: EAppMode;
    updatedAt: Date;
    url: string;
    version: string;
    constructor(data?: Partial<NatiGoEntity>);
}
