declare class ExtractionResult { IsMatch: boolean; Matches: any[]; constructor(isMatch: boolean); } export declare class FormattedStringValueExtracter { Extract(str: string, format: string): ExtractionResult; IsMatch(str: string, format: string): string[]; } export {};