import { JavaClass, BasicOrJavaType } from "java-bridge"; /** * This class just defines types, you should import FileAttribute instead of this. * This was generated by java-bridge. * You should probably not edit this. */ export declare class FileAttributeClass extends JavaClass { /** * @return original return type: 'java.lang.String' */ name(): Promise; /** * @return original return type: 'java.lang.String' */ nameSync(): string | null; /** * @return original return type: 'java.lang.Object' */ value(): Promise; /** * @return original return type: 'java.lang.Object' */ valueSync(): BasicOrJavaType | null; } declare const FileAttribute_base: typeof FileAttributeClass; /** * Class java.nio.file.attribute.FileAttribute. * * This actually imports the java class for further use. * The class FileAttributeClass 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 FileAttribute extends FileAttribute_base { /** * Private constructor to prevent instantiation * as this is either an abstract class or an interface */ private constructor(); } export default FileAttribute; //# sourceMappingURL=FileAttribute.d.ts.map