/** * Compiles the WPS/OOXML wildcard language into a controlled token matcher. `*` * matches zero or more characters, `?` matches one normalized Unicode * character, and `~` escapes `*`, `?`, or another `~`. */ export declare function workSpreadsheetWildcardMatcher(source: string): (value: string) => boolean; export declare function workSpreadsheetHasUnescapedWildcard(source: string): boolean;