import { ConnectorPlatform, MessagingClient, InjectedConnectorFactory } from '@nufi/dapp-client-core'; export { ApiError, ApiErrorCode } from './utils.js'; type CardanoDappConnectorConfig = { appId: string; connectorPlatform: ConnectorPlatform; name: string; icons: { default: string; }; connectors: { cardano: Record; }; }; declare const API_VERSION = "1.1.0"; declare const createInjectedConnectorFactory: (options?: { beforeEnable?: (client: MessagingClient) => Promise; }) => InjectedConnectorFactory; export { API_VERSION, type CardanoDappConnectorConfig, createInjectedConnectorFactory };