import React from 'react'; import { DefaultProps, MantineNumberSize } from '@asuikit/styles'; import { SimpleGridBreakpoint, SimpleGridStylesParams } from './SimpleGrid.styles'; export interface SimpleGridProps extends DefaultProps, React.ComponentPropsWithoutRef<'div'> { variant?: string; /** Breakpoints data to change items per row and spacing based on max-width */ breakpoints?: SimpleGridBreakpoint[]; /** Default amount of columns, used when none of breakpoints can be applied */ cols?: number; /** Spacing between columns, used when none of breakpoints can be applied */ spacing?: MantineNumberSize; /** Vertical spacing between columns, used when none of breakpoints can be applied */ verticalSpacing?: MantineNumberSize; } export declare const SimpleGrid: React.ForwardRefExoticComponent>; //# sourceMappingURL=SimpleGrid.d.ts.map