import { BinanceSignedClient } from '../../../clients';
export interface AutoCancelAllOpenOrdersPayload {
    symbol: string;
    countdownTime: number;
}
export interface AutoCancelAllOpenOrdersResponse {
    symbol: string;
    countdownTime: number;
}
export declare function autoCancelAllOpenOrders(client: BinanceSignedClient, payload: AutoCancelAllOpenOrdersPayload): Promise<AutoCancelAllOpenOrdersResponse>;
