/** * Given a line from a metro stack trace, this can attempt to extract * the file name or URL, omitting the code location. * Can be used to filter files from the stacktrace like LogBox. * * @param traceLine */ export declare function matchFileNameOrURLFromStackTrace(traceMessage: string): string | null;