type Direction = "ltr" | "rtl"; /** * Finds the closest "dir" attribute to current component and returns it's value. * Watches for changes to "dir" and will re-render your component if needed. * * Documentation: https://webgis.esri.com/references/lumina/controllers/useDirection * * Design decisions: https://devtopia.esri.com/WebGIS/arcgis-web-components/discussions/987 */ export declare const useDirection: () => Direction; export {};