import { Bone } from 'leoric';
export declare class Token extends Bone {
    id: bigint;
    createdAt: Date;
    updatedAt: Date;
    tokenId: string;
    tokenMark: string;
    tokenKey: string;
    userId: string;
    cidrWhitelist: string[];
    isReadonly: boolean;
    isAutomation: boolean;
    type: string;
    name: string;
    description: string;
    allowedScopes: string[];
    expiredAt: Date;
    lastUsedAt: Date;
}
