/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import { ElementRef, OnChanges } from '@angular/core'; import { BaseDirective2, StyleBuilder, StyleUtils, MediaMarshaller, LayoutConfigOptions } from '@angular/flex-layout/core'; import * as i0 from "@angular/core"; export interface LayoutStyleDisplay { readonly display: string; } export declare class LayoutStyleBuilder extends StyleBuilder { buildStyles(input: string, { display }: LayoutStyleDisplay): { display: string; 'box-sizing': string; 'flex-direction': string; 'flex-wrap': string | null; }; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } /** * 'layout' flexbox styling directive * Defines the positioning flow direction for the child elements: row or column * Optional values: column or row (default) * @see https://css-tricks.com/almanac/properties/f/flex-direction/ * */ export declare class LayoutDirective extends BaseDirective2 implements OnChanges { private _config; protected DIRECTIVE_KEY: string; constructor(elRef: ElementRef, styleUtils: StyleUtils, styleBuilder: LayoutStyleBuilder, marshal: MediaMarshaller, _config: LayoutConfigOptions); protected updateWithValue(input: string): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } export declare class DefaultLayoutDirective extends LayoutDirective { protected inputs: string[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }