import React from 'react'; import { SystemProps, WithPolyMorphicProps } from "../../../lib"; declare const variants: { center: { justifyContent: string; alignItems: string; }; }; declare const sizes: { fullWidth: { flex: number; }; }; declare type CustomProps = SystemProps & { variant?: keyof typeof variants; flexSize?: keyof typeof sizes; }; export declare const Flex: { = "div">(props: WithPolyMorphicProps): JSX.Element; config: { variant: { center: { justifyContent: string; alignItems: string; }; }; flexSize: { fullWidth: { flex: number; }; }; }; }; export {};