import type { ConstructFetchInput } from '../../types';
export type PartnerFeeResponse = {
    partnerFee: number;
    partnerAddress: string;
    takeSurplus: boolean;
};
type PartnerFeeQueryParams = {
    partner: string;
};
type GetPartnerFee = (options: PartnerFeeQueryParams, signal?: AbortSignal) => Promise<PartnerFeeResponse>;
export type GetPartnerFeeFunctions = {
    getPartnerFee: GetPartnerFee;
};
export declare const constructGetPartnerFee: ({ apiURL, chainId, fetcher, }: ConstructFetchInput) => GetPartnerFeeFunctions;
export {};
//# sourceMappingURL=getPartnerFee.d.ts.map