import { Client, Transport } from "viem";
export type GetUserOperationGasPriceReturnType = {
    slow: {
        maxFeePerGas: bigint;
        maxPriorityFeePerGas: bigint;
    };
    standard: {
        maxFeePerGas: bigint;
        maxPriorityFeePerGas: bigint;
    };
    fast: {
        maxFeePerGas: bigint;
        maxPriorityFeePerGas: bigint;
    };
};
export declare function getUserOperationGasPrice(client: Client<Transport> & {
    eip1559?: boolean;
}): Promise<GetUserOperationGasPriceReturnType>;
