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