type SaslHandshakeRequest = {
    mechanism: string;
};
type SaslHandshakeResponse = {
    errorCode: number;
    mechanisms: string[];
};
export declare const SASL_HANDSHAKE: import("../utils/api").Api<SaslHandshakeRequest, SaslHandshakeResponse>;
export {};
