import type { IMusicalString, IScaleDegree } from "../types/index.js";
type BuilderOptions = {
    isRabbath?: boolean;
};
export declare function positionBuilder(scale: IScaleDegree[], musicalString: IMusicalString, options?: BuilderOptions): IScaleDegree[];
export {};
