import { Response } from '../runtime/types.js'; import '@stacks/transactions'; type StringOnly = Extract; declare function mapValues, VO>(obj: T, mapping: (value: T[K], key: K) => VO): Record; declare function assertNever(x: never): never; declare const unwrapResponse: (response: Response) => T; declare const optionalResponse: (response: Response) => T | undefined; export { type StringOnly, assertNever, mapValues, optionalResponse, unwrapResponse };