import type { BoxProps } from "../Box/Box"; import type { GapProps } from "../StyledProps"; export interface FlexProps extends BoxProps, GapProps { } declare const Flex: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, keyof BoxProps> & BoxProps, FlexProps>> & string; declare const InlineFlex: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, keyof BoxProps> & BoxProps, FlexProps>> & string; export default Flex; export { InlineFlex };