import { Order } from "@gelatonetwork/limit-orders-lib"; export declare function lsKey( key: string, account: string, chainId: number ): string; export declare function getLSOrders( chainId: number, account: string, pending?: boolean ): Order[]; export declare function saveOrder( chainId: number, account: string, order: Order, pending?: boolean ): void; export declare function removeOrder( chainId: number, account: string, order: Order, pending?: boolean ): Order[]; export declare function confirmOrderCancellation( chainId: number, account: string, cancellationHash: string, success?: boolean ): void; export declare function confirmOrderSubmission( chainId: number, account: string, submissionHash: string, success?: boolean ): void;