/** * Copyright (c) 2020-2026 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose * @author Ryan DiRisio */ import { SubstitutionMatrix } from './substitution-matrix.js'; declare const DefaultAlignmentOptions: { gapPenalty: number; gapExtensionPenalty: number; substMatrix: SubstitutionMatrix | "default"; }; export type AlignmentOptions = typeof DefaultAlignmentOptions; export declare function align(seqA: ArrayLike, seqB: ArrayLike, options?: Partial): { aliA: string[]; aliB: string[]; score: number; }; export {};