import { r as PickerProps } from "../../interactive-C4bxY0ip.js"; import { a as BeamStrings, n as BalanceBeamProps } from "../../index-Dr6-CDuB.js"; //#region src/charts/balance-beam/client.d.ts interface InteractiveBalanceBeamProps extends BalanceBeamProps, PickerProps { live?: boolean; strings?: BeamStrings; /** * Opt-in entrance motion (default `false`): the two weights settle onto * the beam on first client-side mount. Inert on the server and on hydrated * server HTML; `prefers-reduced-motion` always wins. Independent of the * beam's own live-retilt CSS transition (that eases geometry attributes on * data change; this animates transform/opacity on mount — no overlap). */ animate?: boolean; } declare function BalanceBeam(props: InteractiveBalanceBeamProps): React.ReactNode; //#endregion export { BalanceBeam, InteractiveBalanceBeamProps };