import { BaseEntity } from 'typeorm';
export declare class Oid4vcStateEntity<StateType> extends BaseEntity {
    id: string;
    lookups?: Array<string>;
    stateId?: string;
    correlationId?: string;
    state: StateType;
    createdAt: Date;
    updatedAt: Date;
    expiresAt?: Date;
    tenantId?: string;
}
//# sourceMappingURL=Oid4vcStateEntity.d.ts.map