import type { Note } from "../types/index.js";
declare function DiminishedSixth(note: Note, direction?: "up" | "down"): Note;
declare function MinorSixth(note: Note, direction?: "up" | "down"): Note;
declare function MajorSixth(note: Note, direction?: "up" | "down"): Note;
declare function AugmentedSixth(note: Note, direction?: "up" | "down"): Note;
export { DiminishedSixth, MajorSixth, MinorSixth, AugmentedSixth };
