import { ReactNode } from 'react'; declare type FlexJustify = 'normal' | 'start' | 'center' | 'end' | 'between' | 'around' | 'evenly'; declare type FlexAlign = 'normal' | 'start' | 'center' | 'end' | 'baseline'; declare type FlexDirection = 'row' | 'row-reverse' | 'column' | 'column-reverse'; export interface BFlexProps { className?: string; children: ReactNode; justify?: FlexJustify; align?: FlexAlign; direction?: FlexDirection; gap?: number | string; fullWidth?: boolean; wrap?: boolean; } export declare const BFlex: (props: BFlexProps) => JSX.Element; export {};