import * as Css from 'csstype'; import { type GenericToken, type ThemeToken } from './types'; import { type Length } from '../utility-types'; export declare const flexboxStyleProperties: import("./types").StylePropertyConfigs; export type FlexboxProps = { flex?: GenericToken>; alignItems?: GenericToken; alignContent?: GenericToken; justifyItems?: GenericToken; justifyContent?: GenericToken; flexWrap?: GenericToken; flexDirection?: GenericToken; flexDir?: GenericToken; flexFlow?: GenericToken; flexGrow?: GenericToken; flexShrink?: GenericToken; flexBasis?: ThemeToken>; justifySelf?: GenericToken; alignSelf?: GenericToken; order?: GenericToken; placeItems?: GenericToken; placeContent?: GenericToken; placeSelf?: GenericToken; gap?: ThemeToken>; rowGap?: ThemeToken>; columnGap?: ThemeToken>; };