import { quantity, quantityStrict, footType, breakObject } from "./types"; export declare function checkForLongShortLong(line: quantity[]): boolean; export declare function convertToQuantityArray(rhythm: footType[]): [quantityStrict[], number[]]; export declare function addFoot(quantities: quantityStrict[], foot: footType): quantityStrict[]; export declare function validateRhythm(knownQuantValues: quantity[], rhythmToValidate: quantityStrict[], dontCheck: number): boolean; export declare function convertRhythmsToScanObjectArray(validRhythms: [quantityStrict[], number[]][], vowelPositions: number[]): [Record, breakObject[]][];