import { BinanceSignedClient } from '../../../clients';
export interface CancelAllOpenOrdersResponse {
    code: number;
    msg: string;
}
export declare function cancelAllOpenOrders(client: BinanceSignedClient, symbol: string): Promise<CancelAllOpenOrdersResponse>;
