import { MmUIComponent } from './component' /** Layout row component */ export declare class MmRow extends MmUIComponent { /** The way in which flex layouts are vertically aligned */ align: 'top' | 'middle' | 'bottom' /** Grid spacing */ gutter: number /** Layout mode, flex or float, available in modern browsers */ type: string /** Horizontal layout in flex layout */ justify: 'start' | 'end' | 'center' | 'space-around' | 'space-between' /** Custom element tags */ tag: string }