import type { AsChildTypes } from "../types"; import { type PropsOf, type QRL } from "@qwik.dev/core"; export type PublicCollapsibleContentProps = PropsOf<"div"> & { onBeforematch$?: QRL<(event: Event) => void>; }; /** Content panel that is shown or hidden based on the collapsible state */ export declare const CollapsibleContent: import("@qwik.dev/core").Component;