import React from 'react'; import './FlexWrap.scss'; export type direction = 'row' | 'row-reverse' | 'column' | 'column-reverse'; export type wrap = 'nowrap' | 'wrap' | 'wrap-reverse'; export type justify = 'justify-flex-start' | 'justify-flex-end' | 'justify-center' | 'justify-space-between' | 'justify-space-around' | 'justify-space-evenly' | 'justify-start' | 'justify-end' | 'justify-left' | 'justify-right'; export type align = 'align-stretch' | 'align-flex-start' | 'align-flex-end' | 'align-center' | 'align-baseline'; export interface Props { FlexDirection?: direction; FlexWrap?: wrap; FlexJustify?: justify; FlexAlign?: align; CustomClass?: any; children?: any; style?: React.CSSProperties; } declare const FlexWrap: ({ CustomClass, FlexDirection, children, FlexWrap, FlexJustify, FlexAlign, style }: Props) => import("react/jsx-runtime").JSX.Element; export default FlexWrap;