import * as React from 'react'; import { Col } from './Col'; import { Row } from './Row'; import { ReactNode } from 'react'; export interface GridProps { className?: string; tag?: string; padding?: string; children?: ReactNode; } /** * @deprecated Komponenten vil ikke bli erstattet. * visibleName Grid (Rutenett) */ export declare class Grid extends React.Component { static Col: typeof Col; static Row: typeof Row; static SPACE_NONE: string; static SPACE_SMALL: string; static SPACE_MEDIUM: string; static SPACE_LARGE: string; static defaultProps: { padding: string; }; render(): React.ReactElement<{ dir: string; className: string; }, string | React.JSXElementConstructor>; }