import { ReactNode } from 'react'; export type IPConfiguration = { country: string; countryCode: string; }; type IpConfigurationContextProps = { getIpConfiguration: () => Promise; removeIpConfiguration: () => void; }; export declare const IpConfigurationContext: import("react").Context; export declare const IpConfigurationContextProvider: ({ children, }: { children: ReactNode; }) => JSX.Element; export declare const useIpConfigurationContext: () => IpConfigurationContextProps; export {};