import { AbsoluteNote } from '../note/absolute-note'; import { Interval } from './interval'; export declare class ComplexInterval extends Interval { protected _complexSize: number; constructor(one: AbsoluteNote, two: AbsoluteNote); get name(): string; get complexSize(): string; transposeUp(note: AbsoluteNote): AbsoluteNote; transposeDown(note: AbsoluteNote): AbsoluteNote; }