import { RegistryType } from '../../common/enum/Registry';
import { Bone } from 'leoric';
export declare class Registry extends Bone {
    id: bigint;
    createdAt: Date;
    updatedAt: Date;
    registryId: string;
    name: string;
    host: string;
    changeStream: string;
    userPrefix: string;
    type: RegistryType;
    authToken?: string;
}
