/** * FluxButton — clickable action primitive. * * Variants: tone × size × emphasis, plus compoundVariants for * ``tone=danger + emphasis=outline`` (danger border + text), ``tone=primary * + emphasis=soft`` (soft primary), and ``tone=neutral + emphasis=ghost`` * (muted ghost). * * Slots: leadingIcon / trailingIcon looked up by id from ctx.slots. * * Accessibility: label is required (enforced by DSL); we set ``aria-label`` * from ``accessibility.label`` and propagate ``aria-busy`` when loading. */ import type { FluxRenderer } from "./types.js"; declare const FluxButton: FluxRenderer; export default FluxButton; //# sourceMappingURL=FluxButton.d.ts.map