import { Environment } from '../endPoints'; import { CrossChainClaim } from './types'; /** * Sends a http request to the get the claim instruction for given quote. * @param params - The parameters required for the claim instruction. * @param environment - The environment in which the claim instruction is being sent. * @returns A promise that resolves to the response data if the claim instruction is successful, otherwise throws an error. * @throws Error if the claim instruction fails or encounters an error. */ export declare const getClaimInstruction: (params: CrossChainClaim, environment: Environment) => Promise<{ data: any; message: string; }>;