import React from 'react'; import { FlowindNumberSize } from '../../styles'; export type StackPosition = 'right' | 'center' | 'left' | 'apart'; export type StackDirection = 'row' | 'col'; export interface StackStylesParams { direction: StackDirection; justify: React.CSSProperties['justifyContent']; noWrap: boolean; grow: boolean; spacing: FlowindNumberSize; align: React.CSSProperties['alignItems']; count: number; } export declare const DIRECTIONS: { row: string; col: string; }; export declare const JUSTIFY: { 'flex-start': string; center: string; 'flex-end': string; 'space-between': string; 'space-around': string; 'space-evenly': string; }; export declare const GAP: { xs: string; sm: string; md: string; lg: string; xl: string; }; export declare const ALIGNMENTS: { 'flex-start': string; center: string; 'flex-end': string; stretch: string; baseline: string; }; declare const _default: (params: StackStylesParams, options?: import("../../styles/utils/create-styles/create-styles").UseStylesOptions) => { classes: { root: string; }; cx: typeof import("clsx").clsx; theme: import("../../styles").FlowindTheme; styls: { root: React.CSSProperties; }; }; export default _default;