import React, { CSSProperties } from 'react'; import { DefaultProps, SystemProp, SpacingValue } from '@asuikit/styles'; export interface FlexProps extends DefaultProps, React.ComponentPropsWithoutRef<'div'> { /** gap CSS property */ gap?: SystemProp; /** row-gap CSS property */ rowGap?: SystemProp; /** column-gap CSS property */ columnGap?: SystemProp; /** align-items CSS property */ align?: SystemProp; /** justify-content CSS property */ justify?: SystemProp; /** flex-wrap CSS property */ wrap?: SystemProp; /** flex-direction CSS property */ direction?: SystemProp; } export declare const Flex: React.ForwardRefExoticComponent>; //# sourceMappingURL=Flex.d.ts.map