import { Value } from "./types";
/**
 * This function makes sure we create a valid UTxO from a value,
 * respecting the min UTxO value.
 */
export declare const fromValueToUTxO: (address: string, value: Value, datumInlined?: string) => {
    value: {
        coin: number;
        assets?: import("./types").AssetMap | null | undefined;
    };
    address: string;
    datumInlined: string | undefined;
};
//# sourceMappingURL=fromValueToUTxO.d.ts.map