type DeleteTopicsRequest = {
    topics: {
        name: string;
        topicId: string | null;
    }[];
    timeoutMs?: number;
};
type DeleteTopicsResponse = {
    throttleTimeMs: number;
    responses: {
        name: string | null;
        _topicId: string;
        errorCode: number;
        errorMessage: string | null;
        tags: Record<number, Buffer>;
    }[];
    tags: Record<number, Buffer>;
};
export declare const DELETE_TOPICS: import("../utils/api").Api<DeleteTopicsRequest, DeleteTopicsResponse>;
export {};
