import { PayioPermissionEntity } from '../../permissions';
import { IPayioPartner } from '../interfaces/i-partner';
export declare class PayioPartnerEntity implements IPayioPartner {
    accessCount: number | null;
    active: boolean;
    companyId: string;
    companyName: string;
    containerId: string | null;
    createdAt: Date;
    id: string;
    imageUrl: string | null;
    lastAccessAt: Date | null;
    name: string;
    roles: PayioPermissionEntity[];
    tags: string[];
    updated: Date;
    userId: string;
    constructor(data?: Partial<PayioPartnerEntity>);
}
