import { JavaClass } from "java-bridge"; import { Temporal as java_time_temporal_Temporal } from "./Temporal"; /** * This class just defines types, you should import TemporalAdjuster instead of this. * This was generated by java-bridge. * You should probably not edit this. */ export declare class TemporalAdjusterClass extends JavaClass { /** * @param var0 original type: 'java.time.temporal.Temporal' * @return original return type: 'java.time.temporal.Temporal' */ adjustInto(var0: java_time_temporal_Temporal | null): Promise; /** * @param var0 original type: 'java.time.temporal.Temporal' * @return original return type: 'java.time.temporal.Temporal' */ adjustIntoSync(var0: java_time_temporal_Temporal | null): java_time_temporal_Temporal | null; } declare const TemporalAdjuster_base: typeof TemporalAdjusterClass; /** * Class java.time.temporal.TemporalAdjuster. * * This actually imports the java class for further use. * The class TemporalAdjusterClass 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 TemporalAdjuster extends TemporalAdjuster_base { /** * Private constructor to prevent instantiation * as this is either an abstract class or an interface */ private constructor(); } export default TemporalAdjuster; //# sourceMappingURL=TemporalAdjuster.d.ts.map