import type { DynamicClient } from '@dynamic-labs-sdk/client'; type BaseAccountAppMetadata = { appLogoUrl: string | undefined; appName: string; }; /** * Reads the customer-supplied app name and logo from the Dynamic client. * Mirrors the lookup used by `createSignClient` in `@dynamic-labs-sdk/wallet-connect` * — preferring `core.metadata` (set on the client) over project-settings fallbacks. * * Used by the Base Account EVM extension so callers do not have to repeat * values they already passed to `createDynamicClient`. * * @param client - The Dynamic client whose configuration drives the result. * @not-instrumented */ export declare const getBaseAccountAppMetadata: (client: DynamicClient) => BaseAccountAppMetadata; export {}; //# sourceMappingURL=getBaseAccountAppMetadata.d.ts.map