type Direction = "ltr" | "rtl" | "null" | ""; /** * Gets the computed direction property of the document element. * * @returns The direction property of the document element, as "ltr", "rtl", or "null". */ export declare function getDirection(): Direction; /** * Sets the direction property on the document element based on the computed style. */ export declare function setDirectionProperty(element: Element): void; export {}; //# sourceMappingURL=direction.d.ts.map