import { Relation } from 'typeorm';
import { BaseMemberEntity } from './base-member.entity';
export declare const MemberOAuthRecordRepo: unique symbol;
export declare class MemberOAuthRecordEntity {
    memberId: string;
    channel: string;
    channelIdentifier: string;
    member: Relation<BaseMemberEntity>;
}
