import { PropsWithChildren } from 'react'; type spacing = '0' | '025' | '050' | '075' | '100' | '125' | '150' | '175' | '200' | '250' | '300' | '350'; export interface GridRowProps { /** The horizontal padding between columns. */ gutter?: spacing; /** The vertical padding (at the bottom) between rows. */ marginBottom?: spacing; /** The vertical padding (at the top) between rows. */ marginTop?: spacing; } /** Represents a component for a grid. */ export declare const GridRow: { ({ gutter, marginBottom, marginTop, children, }: PropsWithChildren): import("react").JSX.Element; Column: ({ size, mediumSize, startPositon, mediumStartPosition, position, children, }: PropsWithChildren) => import("react").JSX.Element; }; export {};