import { FlexAlign, FlexJustify } from '../../../core/enums/flex';
import { Gutter } from '../../../core/enums/gutter';
export declare class RowComponent {
    readonly host = "jnt-row-host";
    _align: FlexAlign;
    _gutter: Gutter;
    _spacing: Gutter;
    _justify: FlexJustify;
    set align(align: FlexAlign);
    set justify(justify: FlexJustify);
    set spacing(spacing: Gutter);
    set gutter(gutter: Gutter);
}
