import { FRoot } from "../../mixins/components/f-root/f-root"; export declare class FTabContent extends FRoot { /** * css loaded from scss file */ static styles: import("lit").CSSResult[]; /** * @attribute Defines the transition to show the next tab content */ transition?: "fade" | "slide" | "none"; /** * @attribute Defines the duration of the transition. It accepts a value in ms(milli-seconds).Default value is 200 ms. */ duration?: number; render(): import("lit-html").TemplateResult<1>; } /** * Required for typescript */ declare global { interface HTMLElementTagNameMap { "f-tab-content": FTabContent; } }