import { Context } from '../../context';
export declare const getPeerByIdOrSlug: (id: string | null, slug: string | null, peerClient: Context['loaders']['peer'], peerBySlug: Context['loaders']['peerBySlug']) => Promise<import("@prisma/client/runtime/library").GetResult<{
    id: string;
    createdAt: Date;
    modifiedAt: Date;
    name: string;
    slug: string;
    hostURL: string;
    token: string;
    isDisabled: boolean;
}, unknown> & {}>;
