import { EventEmitter } from '@angular/core'; import * as i0 from "@angular/core"; export type LayoutDirection = 'ltr' | 'rtl'; /** * Directive to listen for changes of direction of part of the DOM. * * Applications should use this directive instead of the native attribute so that Material * components can listen on changes of direction. */ export declare class Dir { /** Layout direction of the element. */ _dir: LayoutDirection; /** Event emitted when the direction changes. */ dirChange: EventEmitter; /** @docs-private */ get dir(): LayoutDirection; set dir(v: LayoutDirection); /** Current layout direction of the element. */ get value(): LayoutDirection; set value(v: LayoutDirection); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } export declare class RtlModule { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵmod: i0.ɵɵNgModuleDeclaration; static ɵinj: i0.ɵɵInjectorDeclaration; }