import type { HexlifiedIntent, IntentFromParams, NormalizedIntent } from '../types/task'; import { type Hex } from 'viem'; export declare const removeHexPrefix: (input: Hex) => string; export declare function normalizeIntent(intent: IntentFromParams): NormalizedIntent; export declare function sanitizeIntentForRequest(intent: IntentFromParams): HexlifiedIntent;