import type { RegistryType } from '../../common/enum/Registry.ts';
import { Bone } from '../util/leoric.ts';
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;
}
