import { CantonEstimateGasResponseDto } from '../core/types'; export interface UseEstimateGasReturn { estimateGas: (commands: unknown, disclosedContracts?: unknown) => Promise; loading: boolean; error: Error | null; clearError: () => void; } export declare function useEstimateGas(): UseEstimateGasReturn;