/**
* @since 2.0.0
*/
import { Effect } from "effect";
import * as CML from "@anastasia-labs/cardano-multiplatform-lib-nodejs";
/**
* Type alias for the CML LinearFee class
*
* @since 2.0.0
* @category Types
*/
export type LinearFee = CML.LinearFee;
declare const LinearFeeError_base: new = {}>(args: import("effect/Types").Equals extends true ? void : { readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }) => import("effect/Cause").YieldableError & {
readonly _tag: "LinearFeeError";
} & Readonly;
/**
* Error class for LinearFee operations
*
* This error is thrown when operations on LinearFee instances fail.
*
* @since 2.0.0
* @category Errors
*/
export declare class LinearFeeError extends LinearFeeError_base<{
message?: string;
}> {
}
/**
* Method free of LinearFee
*
* @since 2.0.0
* @category Methods
*/
export declare const free: (instance: CML.LinearFee) => Effect.Effect;
/**
* Unsafely calls instance.free without Effect wrapper
*
* @since 2.0.0
* @category MethodsUnsafe
*/
export declare const freeUnsafe: (instance: CML.LinearFee) => void;
/**
* Static method _new of LinearFee
*
* @since 2.0.0
* @category Constructors
*/
export declare const _new: (coefficient: bigint, constant: bigint, refScriptCostPerByte: bigint) => Effect.Effect;
/**
* Unsafely calls LinearFee._new without Effect wrapper
*
* @since 2.0.0
* @category ConstructorsUnsafe
*/
export declare const _newUnsafe: (coefficient: bigint, constant: bigint, refScriptCostPerByte: bigint) => CML.LinearFee;
/**
* Method coefficient of LinearFee
*
* @since 2.0.0
* @category Methods
*/
export declare const coefficient: (instance: CML.LinearFee) => Effect.Effect;
/**
* Unsafely calls instance.coefficient without Effect wrapper
*
* @since 2.0.0
* @category MethodsUnsafe
*/
export declare const coefficientUnsafe: (instance: CML.LinearFee) => bigint;
/**
* Method constant of LinearFee
*
* @since 2.0.0
* @category Methods
*/
export declare const constant: (instance: CML.LinearFee) => Effect.Effect;
/**
* Unsafely calls instance.constant without Effect wrapper
*
* @since 2.0.0
* @category MethodsUnsafe
*/
export declare const constantUnsafe: (instance: CML.LinearFee) => bigint;
/**
* Method refScriptCostPerByte of LinearFee
*
* @since 2.0.0
* @category Methods
*/
export declare const refScriptCostPerByte: (instance: CML.LinearFee) => Effect.Effect;
/**
* Unsafely calls instance.refScriptCostPerByte without Effect wrapper
*
* @since 2.0.0
* @category MethodsUnsafe
*/
export declare const refScriptCostPerByteUnsafe: (instance: CML.LinearFee) => bigint;
export {};
//# sourceMappingURL=LinearFee.d.ts.map