import { default as React } from 'react'; export interface LoaderObj { id: string; mountLabel?: string; unmountLabel?: string; } export interface IAccessibilityContext { addLoader: (loader: LoaderObj) => void; removeLoader: (id: string) => void; } export declare const AccessibilityContext: React.Context; export interface AccessibilityProviderProps { /** * Rest of the App code */ children: React.ReactNode; } /** * By default it is baked into the component. When u are not using the layout component * you can use this provider to add the accessibility context to your app. */ export declare const AccessibilityProvider: (props: AccessibilityProviderProps) => JSX.Element;