import type { AsChildTypes } from "../types"; import { type PropsOf } from "@qwik.dev/core"; export type PublicTabsContentProps = PropsOf<"div"> & { /** The value that identifies which tab this content belongs to */ value?: string; }; /** Panel that displays when its associated tab trigger is selected */ export declare const TabsContent: import("@qwik.dev/core").Component;