import { Project } from "../dawproject/project"; /** Available features for project creation */ export type Features = "CUE_MARKERS" | "CLIPS" | "AUDIO" | "NOTES" | "AUTOMATION" | "ALIAS_CLIPS" | "PLUGINS"; /** Create a DAW project with the specified number of tracks and features */ export declare function createDummyProject(numTracks: number, features: Set): Project; /** * Create a project with MIDI automation (CC1 or Pitch Bend) either in clips or directly on tracks. */ export declare function createMIDIAutomationExample(name: string, inClips: boolean, isPitchBend: boolean): Project;