import type { ReactNode } from "react"; export interface DirectionProviderProps { /** The content to wrap with the direction provider. */ children: ReactNode; /** The text direction. */ dir: "ltr" | "rtl"; }