import { BaseMemberEntity } from './base-member.entity';
import { type Relation } from 'typeorm';
export declare const MemberPasswordHistoryRepo: unique symbol;
export declare class MemberPasswordHistoryEntity {
    id: string;
    memberId: string;
    password: string;
    createdAt: Date;
    member: Relation<BaseMemberEntity>;
}
