import React from 'react'; import { DefaultProps, MantineNumberSize } from '@asuikit/styles'; import { StackStylesParams } from './Stack.styles'; export interface StackProps extends DefaultProps, React.ComponentPropsWithoutRef<'div'> { variant?: string; /** Key of theme.spacing or any valid CSS value to set gap */ spacing?: MantineNumberSize; /** align-items CSS property */ align?: React.CSSProperties['alignItems']; /** justify-content CSS property */ justify?: React.CSSProperties['justifyContent']; } export declare const Stack: React.ForwardRefExoticComponent>; //# sourceMappingURL=Stack.d.ts.map