import { Entity } from '@loopback/repository'; import { AdapterPayload } from 'oidc-provider'; export declare class OidcItem extends Entity { id: string; type: number; payload: AdapterPayload; grantId: string; userCode: string; uid: string; expiresAt?: number; consumedAt?: number; constructor(data?: Partial); }