import { r as PickerProps } from "../../interactive-C4bxY0ip.js"; import { n as SeriesStrings } from "../../summary-D8UEQXYr.js"; import { MusicStaffProps } from "./index.js"; //#region src/charts/music-staff/client.d.ts interface InteractiveMusicStaffProps extends MusicStaffProps, PickerProps { strings?: SeriesStrings; /** * Opt-in entrance motion (default `false`): the note heads pop onto the staff * one after another, left to right, and the melody line draws on behind them, * on first client-side mount. Inert on the server and on hydrated * server HTML; `prefers-reduced-motion` always wins. */ animate?: boolean; } declare function MusicStaff(props: InteractiveMusicStaffProps): React.ReactNode; //#endregion export { InteractiveMusicStaffProps, MusicStaff };