import { type TemplateResult } from "lit"; import { GlobalStyle } from "../../internal/global-style.js"; /** * {@linkcode Flex} provides flex layout. * * @slot - Flex items. * @category layout */ declare class Flex extends GlobalStyle { /** * CSS property `flex-flow` (`flex-direction flex-wrap`). */ flexFlow: string; /** * CSS property `gap`. */ gap: string; /** * CSS property `justify-content`. */ content: string; /** * CSS property `align-items`. */ items: string; /** * If true, set flex-direction to "column". */ vertical: boolean; constructor(); protected render(): TemplateResult<1>; } export default Flex; export { Flex };