type Direction = 'ltr' | 'rtl'; /** * A hook to return the direction (left-to-right or right-to-left) based on the language * * if a "dir" is passed to the hook, then that will be used as a direction * otherwise it will check if the language (localeIdentifier) is a right-to-left language and return rtl * otherwise it defaults to "ltr" * @param dir * @param localeIdentifier * @returns */ export declare const useResolvedDirection: (dir: Direction | undefined, localeIdentifier: string | undefined) => Direction; export {};