import { BaseService } from '../infrastructure'; import { RequestOptions } from '../infrastructure/RequestHelper'; declare type SnippetId = string | number; declare class Snippets extends BaseService { all(options?: { public: boolean; }): Promise; content(snippetId: SnippetId): Promise; create(title: string, fileName: string, content: string, visibility: string, options?: {}): Promise; edit(snippetId: SnippetId, options: RequestOptions): Promise; remove(snippetId: SnippetId): Promise; show(snippetId: SnippetId): Promise; userAgentDetails(snippetId: SnippetId): Promise; } export default Snippets;