import { Exportable } from './exportable'; export declare class Files implements Exportable { token?: string; channels?: string; content?: string; file?: any; filename?: string; filetype?: string; initialComment?: string; threadTs?: string; title?: string; export: Exportable['export']; readonly setToken: (value: string) => void; readonly setChannels: (...channels: string[]) => void; readonly setContent: (value: string) => void; /** * @todo */ readonly setFile: (_value: string) => void; readonly setFilename: (value: string) => void; /** * @see (@link https://api.slack.com/types/file#file_types) */ readonly setFiletype: (value: string) => void; readonly setInitialComment: (value: string) => void; readonly setThreadTs: (value: string) => void; readonly setTitle: (value: string) => void; }