export declare class Cryptography { private readonly cert; private readonly key; constructor(cert: string, key: string); sign(data: string): string; }