import type { SlackAPIResponse } from "../response";
export type SlackListsDownloadGetResponse = SlackAPIResponse & {
    download_url?: string;
    error?: string;
    needed?: string;
    ok: boolean;
    provided?: string;
    response_metadata?: ResponseMetadata;
    status?: string;
    warning?: string;
};
export interface ResponseMetadata {
    messages?: string[];
}
//# sourceMappingURL=SlackListsDownloadGetResponse.d.ts.map