import type { Note } from "../types/index.js";
declare function DiminishedOctave(note: Note, direction?: "up" | "down"): Note;
declare function PerfectOctave(note: Note, direction?: "up" | "down"): Note;
declare function AugmentedOctave(note: Note, direction?: "up" | "down"): Note;
export { DiminishedOctave, PerfectOctave, AugmentedOctave };
