interface MatchBounds { end: number; start: number; } export declare function escapeStringRegexp(str: string): string; export default function getMatchBounds(subject: string, str: string): MatchBounds | null; export {};