import { Problem, LangSlug } from "leetcode-api-typescript"; export declare function New(slug: string, dst: string): Promise; export declare function Pull(slug: string, dst: string): Promise; export declare function DownloadProblem(problem: Problem, dst: string): Promise; export declare function Code(slug: string, langSlug: LangSlug, template: string, dst: string): Promise; export declare function Submit(slug: string, langSlug: LangSlug, code: string): Promise; export declare function GetSubmissions(slug: string): Promise;