import { JavaClass } from "java-bridge"; import { File as java_io_File } from "./File"; /** * This class just defines types, you should import FilenameFilter instead of this. * This was generated by java-bridge. * You should probably not edit this. */ export declare class FilenameFilterClass extends JavaClass { /** * @param var0 original type: 'java.io.File' * @param var1 original type: 'java.lang.String' * @return original return type: 'boolean' */ accept(var0: java_io_File | null, var1: string | null): Promise; /** * @param var0 original type: 'java.io.File' * @param var1 original type: 'java.lang.String' * @return original return type: 'boolean' */ acceptSync(var0: java_io_File | null, var1: string | null): boolean; } declare const FilenameFilter_base: typeof FilenameFilterClass; /** * Class java.io.FilenameFilter. * * This actually imports the java class for further use. * The class FilenameFilterClass 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 FilenameFilter extends FilenameFilter_base { /** * Private constructor to prevent instantiation * as this is either an abstract class or an interface */ private constructor(); } export default FilenameFilter; //# sourceMappingURL=FilenameFilter.d.ts.map