import { FRoot } from "../../mixins/components/f-root/f-root"; /** * @summary Text component includes Headings, titles, body texts and links. */ export declare class FForm extends FRoot { /** * css loaded from scss file */ static styles: import("lit").CSSResult[]; /** * @attribute Gap is used to define the gap between the elements */ gap?: "large" | "medium" | "small" | "x-small"; /** * @attribute group separator */ separator?: boolean; render(): import("lit-html").TemplateResult<1>; } /** * Required for typescript */ declare global { interface HTMLElementTagNameMap { "f-form": FForm; } }