export type Direction = 'ltr' | 'rtl' | 'auto'; /** * Sets document or element direction and mirrors a data attribute for styling hooks. */ export declare function setDirection(target: (Document | HTMLElement) | undefined, dir: Direction): void; export declare function getDirection(target?: Document | HTMLElement): Direction; //# sourceMappingURL=dir.d.ts.map