/// /// export type CodeDeckDetails = { category: string; title: string; description: { short: string; long: string; }; github: { url: string; }; }; export type CodeDeckTokenDetails = [importId: string, gitUrl: string]; export declare function listenDeploy(id: string, gitUrl: string): Promise; export declare function getTemplateFile(deckZip: Buffer): Promise; export declare function getDeckFromGit(): Promise; export declare class CodeDeckToken { static createToken(importId: string, gitUrl: string): string; static getDetailsFromToken(token: string): CodeDeckTokenDetails; }