import { IPasteCreatingOptions } from "./features/IPasteCreatingOptions"; import { IPasteStruct } from "./features/IPasteStruct"; export declare class RentryClient { private token; private jar; constructor(); createToken(): Promise; useToken(token: string): void; getToken(): string; createPaste(options: IPasteCreatingOptions): Promise; getPaste(id: string): Promise; editPasteContent(id: string, password: string, newContent: string): void; editPasteContentAsync(id: string, password: string, newContent: string): Promise; editPasteEditCode(id: string, password: string, newEditCode: string): void; editPasteUrl(id: string, password: string, newUrl: string): void; deletePaste(id: string, password: string): void; }