Version: 0.0.01.0.01.0.11.0.21.0.31.0.41.1.01.1.11.1.21.1.31.2.01.2.11.3.01.4.01.4.11.5.01.6.01.6.11.6.21.7.01.8.01.8.11.8.21.9.01.9.11.9.21.9.32.0.0-alpha.02.0.0-alpha.12.0.0-beta.02.0.0-beta.12.0.02.0.12.0.22.0.32.1.12.2.02.3.02.3.12.3.22.3.33.0.0-alpha.03.0.0-beta.03.0.0-beta.13.0.0-beta.23.0.0-beta.33.0.0-beta.43.0.03.0.13.0.23.0.33.0.43.1.03.2.03.2.13.3.03.3.13.3.23.4.03.4.13.4.23.4.33.4.43.5.03.5.13.5.23.6.03.6.13.6.23.6.33.6.43.6.53.6.63.6.73.7.03.7.13.7.24.0.0-beta.14.0.0-beta.24.0.14.0.24.0.34.0.44.0.54.1.04.1.14.1.24.1.34.1.44.2.04.2.14.2.24.3.04.3.1
import { ModularScaleRatio } from '../types/modularScaleRatio';
declare const ratioNames: {
minorSecond: 1.067;
majorSecond: 1.125;
minorThird: 1.2;
majorThird: 1.25;
perfectFourth: 1.333;
augFourth: 1.414;
perfectFifth: 1.5;
minorSixth: 1.6;
goldenSection: 1.618;
majorSixth: 1.667;
minorSeventh: 1.778;
majorSeventh: 1.875;
octave: 2;
majorTenth: 2.5;
majorEleventh: 2.667;
majorTwelfth: 3;
doubleOctave: 4;
};
declare function modularScale(
steps: number,
base?: number | string,
ratio?: ModularScaleRatio,
): string;
export { ratioNames };
export default modularScale;