import type { StaticElement, StaticElementEntry } from './types';
type LiveRegionTwinContextType = {
    markAllAsRendered: () => void;
    queueStaticElement: (element: StaticElement) => void;
    staticElementEntriesState: readonly [readonly StaticElementEntry[]];
};
declare const LiveRegionTwinContext: import("react").Context<LiveRegionTwinContextType>;
export default LiveRegionTwinContext;
export type { LiveRegionTwinContextType };
//# sourceMappingURL=Context.d.ts.map