import type { Note } from "../types/index.js";
declare function DiminishedSeventh(note: Note, direction?: "up" | "down"): Note;
declare function MinorSeventh(note: Note, direction?: "up" | "down"): Note;
declare function MajorSeventh(note: Note, direction?: "up" | "down"): Note;
declare function AugmentedSeventh(note: Note, direction?: "up" | "down"): Note;
export { DiminishedSeventh, MajorSeventh, MinorSeventh, AugmentedSeventh };
