import { Prefix } from './constants'; /** * Given a string, check that it contains a valid prefix * * @param {string} string * * @returns {string} the prefix * * @example * > getPrefix('p.1234') * 'p' */ declare const getPrefix: (string: string) => Prefix; /** * Given a string representing a continuous variant, parses and checks the content * * @param {string} string the variant to be parsed * * @returns {object} the parsed content * * @example * > parseContinuous('p.G12D') * {type: 'substitution', prefix: 'p', break1Start: {'@class': 'ProteinPosition', pos: 12, refAA: 'G'}, untemplatedSeq: 'D'} */ declare const parseContinuous: (inputString: any) => { break1Start: any; break1End: any; break2Start: any; break2End: any; refSeq: any; untemplatedSeq: any; untemplatedSeqSize: any; truncation: any; notationType: any; type: string; prefix: Prefix; }; export { parseContinuous, getPrefix };