import { INatipayToken } from '../interfaces/i-token';
export declare class NatipayTokenEntity implements INatipayToken {
    createdAt: Date;
    deviceId: string | null;
    expiresAt: Date;
    id: string;
    ipAddress: string | null;
    isRevoked: boolean;
    refreshToken: string;
    revokedAt: Date | null;
    sandbox: boolean;
    updatedAt: Date;
    userAgent: string | null;
    userId: string;
    constructor(data?: Partial<NatipayTokenEntity>);
}
