import { ElementRef } from '@angular/core'; /** * Define the accepted string values for {@link TsVerticalSpacingDirective} */ export declare type TsVerticalSpacingTypes = 'small--2' | 'small--1' | 'small--0' | 'none' | 'default--0' | 'large--0' | 'large--1' | 'large--2' | 'large--3' | 'large--4' | 'large--5' | 'large--6'; /** * This is the vertical spacing UI directive. Accepts {@link TsVerticalSpacingTypes} * * @example *
* My content! *
* *
* My content! *
* *
* My content! *
* * https://getterminus.github.io/ui-demos-release/components/spacing */ export declare class TsVerticalSpacingDirective { private elementRef; /** * Set a spacing class based on the passed in value * * @param value - The spacing value passed in. */ set tsVerticalSpacing(value: TsVerticalSpacingTypes); constructor(elementRef: ElementRef); }