interface PK { issue(): any; to(): any; from(): any; } export declare class MongoConnection { protected client: any; protected pk: PK; constructor(client: any, pk: PK); issuePrimaryKey(): any; } export {};