import { AfterContentInit, ElementRef } from '@angular/core'; /** * Handling gutter layouting and default / custom gutter rendering */ export declare class SplitGutterComponent implements AfterContentInit { customGutter: ElementRef; readonly height: string; readonly flexBasis: string; readonly transition: string; useTransition: boolean; order: number; direction: 'vertical' | 'horizontal'; size: number; color: string; imageH: string; imageV: string; disabled: boolean; useDefaultGutter: boolean; useCustomGutter: boolean; private _useTransition; constructor(); ngAfterContentInit(): void; }