import * as React from 'react'; export interface RowProps { rowSpacing?: string; rowInset?: boolean; centered?: boolean; className?: string; tag?: string; padding?: string; children?: React.ReactNode; } /** * @deprecated Komponenten vil ikke bli erstattet. */ export declare class Row extends React.Component { static displayName: string; static defaultProps: { rowSpacing: string; }; render(): React.ReactElement<{ className: string; }, string | React.JSXElementConstructor>; }