import { BaseNumberExtractor, BaseNumberParser } from "@microsoft/recognizers-text-number"; import { IDurationExtractorConfiguration, IDurationParserConfiguration } from "../baseDuration"; import { ICommonDateTimeParserConfiguration } from "../parsers"; export declare class SpanishDurationExtractorConfiguration implements IDurationExtractorConfiguration { readonly allRegex: RegExp; readonly halfRegex: RegExp; readonly followedUnit: RegExp; readonly numberCombinedWithUnit: RegExp; readonly anUnitRegex: RegExp; readonly inexactNumberUnitRegex: RegExp; readonly suffixAndRegex: RegExp; readonly relativeDurationUnitRegex: RegExp; readonly moreThanRegex: RegExp; readonly lessThanRegex: RegExp; readonly cardinalExtractor: BaseNumberExtractor; constructor(); } export declare class SpanishDurationParserConfiguration implements IDurationParserConfiguration { readonly cardinalExtractor: BaseNumberExtractor; readonly numberParser: BaseNumberParser; readonly followedUnit: RegExp; readonly suffixAndRegex: RegExp; readonly numberCombinedWithUnit: RegExp; readonly anUnitRegex: RegExp; readonly allDateUnitRegex: RegExp; readonly halfDateUnitRegex: RegExp; readonly inexactNumberUnitRegex: RegExp; readonly unitMap: ReadonlyMap; readonly unitValueMap: ReadonlyMap; readonly doubleNumbers: ReadonlyMap; constructor(config: ICommonDateTimeParserConfiguration); }