import type { CartLine, Storage, StandardApi } from '@shopify/ui-extensions/customer-account'; /** * Creates a mock `CartLine` with sensible defaults. * * Pass a partial override to customize any field. */ export declare function createCartLine(overrides?: Partial): CartLine; /** * Creates a mock `Storage` instance. * * Optionally accepts a `Record` of initial entries. */ export declare function createStorage(initialEntries?: Record): Storage; /** * Maps each customer account mutation API name to its result type. */ export interface CustomerAccountMutationResults { applyTrackingConsentChange: Awaited>; } export declare function createResult(mutation: K, result?: Partial): CustomerAccountMutationResults[K]; //# sourceMappingURL=index.d.ts.map