import { Getter } from '@loopback/core';
import { BelongsToAccessor, Entity, juggler } from '@loopback/repository';
import { DefaultTransactionalUserModifyRepository, IAuthUserWithPermissions } from '@sourceloop/core';
import { Contact, Tenant } from '../models';
import { TenantRepository } from './tenant.repository';
export declare class ContactRepository<T extends Contact = Contact> extends DefaultTransactionalUserModifyRepository<T, typeof Contact.prototype.id, {}> {
    readonly getCurrentUser: Getter<IAuthUserWithPermissions>;
    protected tenantRepositoryGetter: Getter<TenantRepository>;
    private readonly contact;
    readonly tenant: BelongsToAccessor<Tenant, typeof Contact.prototype.id>;
    constructor(dataSource: juggler.DataSource, getCurrentUser: Getter<IAuthUserWithPermissions>, tenantRepositoryGetter: Getter<TenantRepository>, contact: typeof Entity & {
        prototype: T;
    });
}
