export { getContext, setContext } from "./core/Global"; export * from "./classes"; export { start } from "./core/Global"; /** * The current audio context time * @Category Core */ export declare function now(): import("./core/type/Units").Seconds; /** * The Transport object belonging to the global Tone.js Context * @Category Core */ export declare const Transport: import("./classes").Transport; /** * The Destination (output) belonging to the global Tone.js Context * @Category Core */ export declare const Destination: import("./classes").Destination;