import { MiscTypes } from '@oneblink/types'; export type ReplaceInjectablesOverrides = { /** * A function that returns the user profile. If not provided, the user profile * will be that of the currently logged in user. The user profile is used for * any injectable `{USER:}` values. */ getUserProfile?: () => MiscTypes.UserProfile | undefined; }; export declare const ReplaceInjectablesOverridesContext: import("react").Context; export default function useReplaceInjectablesOverrides(): ReplaceInjectablesOverrides | undefined;