import { IToken } from '../interfaces';
export declare class TokenEntity implements IToken {
    active: boolean;
    companyId: string | null;
    companyName: string;
    containerId: string | null;
    createdAt: number;
    customerId: string | null;
    description: string;
    expiresAt: number;
    id: string;
    lastAccessAt: number;
    name: string;
    partnerId: string | null;
    sandbox: boolean;
    value: string;
    constructor(data?: Partial<TokenEntity>);
}
