import { type ILegacyBindingContext } from './binding-context';
export declare const LEGACY_BOOTSTRAP_STATE_SYMBOL: unique symbol;
export interface ILegacyBootstrapState {
    legacyBindingContext: ILegacyBindingContext;
    preloaded: boolean;
}
export declare function getLegacyBootstrapState(): ILegacyBootstrapState;
