import { OFXApplicationContext } from "./OFXApplicationContext";
export declare class OFXApplicationContextHolder {
    private static CURRENT_CONTEXT;
    /**
     * Get the current (thread-safe) context.
     *
     * @return The thread-safe context.
     */
    static getCurrentContext(): OFXApplicationContext;
    /**
     * Set the current context.
     *
     * @param context The context.
     */
    static setCurrentContext(context: OFXApplicationContext): void;
}
