import { type MutableRefObject } from 'react'; export interface NestedContextValue { currentStackId: string; onNest: (id: string) => void; onUnNest: () => void; stack: string[]; parentId: string; backButton?: React.ReactNode; childIds: MutableRefObject>; forceShowTopScrollIndicator: boolean | undefined; activeParentId?: string; goBackButtonRef?: React.MutableRefObject; isDefaultFocusControl?: boolean; focusGoBackButton?: boolean; } export declare const NestedContext: import('react').Context;