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