import { type ChainId } from '../../config';
import { type CreateCashoutResponse } from './createCashout';
export type GetCashoutResponse = {
    txHash: string;
} & CreateCashoutResponse;
type Props = {
    chainId: ChainId;
    orderId: string;
};
export declare const getCashout: ({ chainId, orderId }: Props) => Promise<GetCashoutResponse | null>;
export {};
