import type { Token } from '../types';
export default function useIsPassthrough(token: Token, apiKey?: string): {
    isPassthrough: boolean;
    moonPayCurrency: {
        name: string;
        type: string;
        notAllowedCountries: string[];
        notAllowedUSStates: string[];
        code: string;
        chainId: string;
        contractAddress: string;
    };
} | {
    isPassthrough: boolean;
    moonPayCurrency: null;
};
//# sourceMappingURL=useIsPassthrough.d.ts.map