import { OnInit } from '@angular/core'; export declare class GridDirective { baseClass: boolean; } export declare class RowDirective { baseClass: boolean; /** * Set to `true` for no gutters between columns. */ noGutters: boolean; /** * Set to `true` to make the columns distribute their height accordingly to the row total height. */ rowDeck: boolean; } export declare class ColumnDirective implements OnInit { /** * Sets the class */ class: string; /** * Object that sets the column numbers according to the breakpoint. * Breakpoints can be:
* - xs: From 0px
* - sm: From 576px
* - md: From 768px
* - lg: From 992px
* - xl: From 1200px
* - xxl: From 1600px
* - nobreak: For all viewports. *
* Example: * ```{xs: 12, sm: 6, md: 4}``` */ columnNumbers: {}; /** * Object that sets the column offset according to the breakpoint. * Breakpoints can be:
* - xs: From 0px
* - sm: From 576px
* - md: From 768px
* - lg: From 992px
* - xl: From 1200px
* - xxl: From 1600px
* - nobreak: For all viewports. *
* Example: * ```{xs: 12, sm: 6, md: 4}``` */ offsets: {}; protected _columnClasses: string[]; readonly columnClasses: string; set(classes: string): void; ngOnInit(): void; }