import type { AsChildTypes } from "../types"; import { type PropsOf } from "@qwik.dev/core"; export type PublicTabsTriggerProps = PropsOf<"button"> & { /** The value that identifies this tab */ value?: string; }; /** Button that selects the associated tab content panel */ export declare const TabsTrigger: import("@qwik.dev/core").Component;