import type { AddressResponse } from '@/client'; export declare const ADDRESS_RESPONSE_MOCK: AddressResponse; /** * A utility type that makes all properties of a given type T optional, * including nested properties. This is useful for creating partial objects * for testing or mocking purposes. */ export type DeepPartial = { [P in keyof T]?: T[P] extends object ? DeepPartial : T[P]; }; export declare function generateUuid(): string; export declare function createIsoDateTime(): string;