import { ReactNode } from 'react'; interface IntegrationAppProviderProps { token?: string; fetchToken?: () => Promise; credentials?: any; fetchCredentials?: () => Promise; apiUri?: string; uiUri?: string; children: ReactNode; } export declare const IntegrationAppProvider: ({ token, fetchToken, credentials, fetchCredentials, apiUri, uiUri, children, }: IntegrationAppProviderProps) => import("react/jsx-runtime").JSX.Element; export declare const MembraneProvider: ({ token, fetchToken, credentials, fetchCredentials, apiUri, uiUri, children, }: IntegrationAppProviderProps) => import("react/jsx-runtime").JSX.Element; export {};