declare class SRID {
    private countryCode;
    private sharedId;
    private transactionCount;
    constructor(countryCode: string);
    getSharedId(): string;
    generateUserId(): string;
    generateWalletId(): string;
    generateTransactionId(): string;
}
export default SRID;
