import { JavaClass } from "java-bridge"; import { Path as java_nio_file_Path } from "./Path"; /** * This class just defines types, you should import PathMatcher instead of this. * This was generated by java-bridge. * You should probably not edit this. */ export declare class PathMatcherClass extends JavaClass { /** * @param var0 original type: 'java.nio.file.Path' * @return original return type: 'boolean' */ matches(var0: java_nio_file_Path | null): Promise; /** * @param var0 original type: 'java.nio.file.Path' * @return original return type: 'boolean' */ matchesSync(var0: java_nio_file_Path | null): boolean; } declare const PathMatcher_base: typeof PathMatcherClass; /** * Class java.nio.file.PathMatcher. * * This actually imports the java class for further use. * The class PathMatcherClass only defines types, this is the class you should actually import. * Please note that this statement imports the underlying java class at runtime, which may take a while. * This was generated by java-bridge. * You should probably not edit this. */ export declare class PathMatcher extends PathMatcher_base { /** * Private constructor to prevent instantiation * as this is either an abstract class or an interface */ private constructor(); } export default PathMatcher; //# sourceMappingURL=PathMatcher.d.ts.map