import type { Signal } from "@qwik.dev/core"; export type BindableProps = { [K in keyof T]?: T[K]; } & { [K in keyof T as `bind:${string & K}`]?: Signal; }; export type AsChildTypes = { asChild?: true; };