import { Entity } from '@loopback/repository'; export declare class JwtKeys extends Entity { id?: number; keyId: string; publicKey: string; privateKey: string; createdOn?: Date; constructor(data?: Partial); }