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