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