import { Sound } from "./ir";
/**
 * A sequence of sounds (IPA segments).
 * Not the same as a union of sounds.
 */
export type SequenceSound = string[];
/**
 * Concatenates any number of sounds.
 * Returns the array of possible concatenations.
 */
export declare function concatenate(...sounds: Sound[]): SequenceSound[];
//# sourceMappingURL=operators.d.ts.map