import { r as PickerProps } from "../../interactive-C4bxY0ip.js"; import { n as Format } from "../../format-Dq02z5ZL.js"; import { t as CompositionStrings } from "../../strings-composition-d0S4LmjA.js"; import { MicroDonutProps } from "./index.js"; //#region src/charts/micro-donut/client.d.ts interface InteractiveMicroDonutProps extends MicroDonutProps, PickerProps { strings?: CompositionStrings; format?: Format | undefined; locale?: string | string[] | undefined; /** * Opt-in entrance motion (default `false`): the ring DRAWS itself on first * client-side mount — one clockwise sweep from 12 o'clock, each wedge's * stroke unrolling for a span proportional to its own arc. Inert on the * server and on hydrated server HTML; `prefers-reduced-motion` always wins. * Skipped when * `decorative` (an aria-hidden ornament renders through the static entry * directly, before any hook that could wire it runs). */ animate?: boolean; } declare function MicroDonut(props: InteractiveMicroDonutProps): React.ReactNode; //#endregion export { InteractiveMicroDonutProps, MicroDonut };