import { ComponentType, FC } from "react"; type IdentityContextType = { camundaAuth?: { token: string; refreshTokenMethod: () => Promise; }; apiBaseUrl: string; organizationId: string; docsUrl: string; }; export declare const useIdentityContext: () => IdentityContextType; type IdentityContextProps = Omit & Partial>; export declare const withIdentityContext: (Component: ComponentType) => FC; declare const C4IdentityContextProvider: FC<{ children?: import("react").ReactNode; } & Omit & Partial>>; export default C4IdentityContextProvider;