import { merge } from "../merge/index.mjs"; import { cv, cx, scv, sv } from "../cx/index.mjs"; //#region src/runtime/index.d.ts type BossRuntimeComponent = ((props: Record, ref?: unknown, ...restArgs: unknown[]) => unknown) & { displayName?: string; merge?: typeof merge; cx?: typeof cx; cv?: typeof cv; scv?: typeof scv; sv?: typeof sv; css?: () => void; style?: (...inputs: Record[]) => Record; $?: (input: unknown) => unknown; __bossTag?: string; }; declare function factory(tag?: unknown): (props: Record, ref?: unknown, ...restArgs: unknown[]) => unknown; declare const proxy: BossRuntimeComponent; //#endregion export { factory, proxy };