import type { ReactNode } from 'react'; export type Direction = 'ltr' | 'rtl'; export interface DirectionProviderProps { /** The subtree that should read this direction */ children: ReactNode; /** * Reading direction for descendant components * @default 'ltr' */ dir?: Direction; } /** * Sets the reading direction for descendant components. Thin wrapper over Base * UI's direction provider so consumers depend on `@appica/ui-react` rather than * the underlying primitive. * * Optional - components default to `ltr` with no provider, so reach for this * only when supporting RTL. */ export declare function DirectionProvider({ children, dir }: DirectionProviderProps): import("react").JSX.Element; //# sourceMappingURL=direction-provider.d.ts.map