import type { AgStudioApi, StudioApiInternals } from '../api/agStudioApi'; import type { AgBaseRegistry } from '../api/agRegistry'; export declare const INTERNAL: unique symbol; export type WithInternal = TPublic & { readonly [INTERNAL]: TInternal; }; export declare function getInternals(obj: object): TInternal; export declare function getApiInternals(api: AgStudioApi): StudioApiInternals; export declare function addInternals(obj: TPublic, internals: TInternal): WithInternal;