import * as React from 'react'; export type Direction = 'ltr' | 'rtl'; export declare const DirectionContext: React.Context; /** * The writing direction the components should lay themselves out for. * * Defaults to React Native's own `I18nManager.isRTL`, which is what the platform * already flips layout by — so an app that has enabled RTL gets the right * behaviour without wrapping anything. Wrap a subtree in `DirectionProvider` to * override it, which is what a language switcher inside an LTR app needs. */ export declare function useDirection(): Direction; //# sourceMappingURL=DirectionContext.d.ts.map