import React, { PropsWithChildren } from 'react';
import { Provider } from '@kepler.gl/cloud-providers';
type CloudListProviderProps = PropsWithChildren<{
    providers: Provider[];
}>;
export declare const CloudListProvider: React.FC<CloudListProviderProps>;
/**
 * this hook provides access the CloudList provider context
 */
export declare const useCloudListProvider: () => import("../context").CloudProviderContextType;
export {};
