import { Component } from 'react'; export interface ILayoutRowProps { className?: string; justify?: 'start' | 'center' | 'end' | 'space-around' | 'space-between' | 'space-evenly'; align?: 'start' | 'center' | 'end'; style?: React.CSSProperties; } export declare class LayoutRow extends Component { static defaultProps: { justify: string; align: string; }; render(): JSX.Element; } export default LayoutRow;