import { type FunctionComponent, PropsWithChildren } from 'react'; import { CustomContextProviderProps } from '../../../types'; import { SisenseContextPayload } from './sisense-context'; /** @internal */ export type CustomSisenseContext = SisenseContextPayload; /** @internal */ export type CustomSisenseContextProviderProps = CustomContextProviderProps; /** * Custom Sisense Context Provider component that allows passing external context. * * Note: it specifically designed to serve as a bridge for passing context between an external wrapper and child React components. * * @internal */ export declare const CustomSisenseContextProvider: FunctionComponent>;