import { Clip } from 'ableton-js/ns/clip'; import { Note, NoteExtended } from 'ableton-js/util/note'; export declare function removeNotesExtended(clip: Clip, fromPitch: number, pitchSpan: number, fromTime: number, timeSpan: number): Promise; export declare function removeAllNotes(clip: Clip): Promise; export declare function getAllNotes(clip: Clip): Promise; export declare function getNotes(clip: Clip, fromPitch: number, pitchSpan: number, fromTime: number, timeSpan: number): Promise; export declare function createNoteSnapshot(clip: Clip, historyId: number): Promise; export declare function setNotesExtended(clip: Clip, notes: NoteExtended[]): Promise; export declare function replaceClipNotes(clip: Clip, notes: Note[]): Promise; export declare function replaceClipNotesExtended(clip: Clip, notes: NoteExtended[]): Promise;