import type { Note } from "../types/index.js";
declare function DiminishedThird(note: Note, direction?: "up" | "down"): Note;
declare function MinorThird(note: Note, direction?: "up" | "down"): Note;
declare function MajorThird(note: Note, direction?: "up" | "down"): Note;
declare function AugmentedThird(note: Note, direction?: "up" | "down"): Note;
export { DiminishedThird, MinorThird, MajorThird, AugmentedThird };
