import type { GenericNetwork } from '@dynamic-labs/types'; import type { WalletConnector } from '../..'; /** * Interface for Midnight wallet connectors. * Midnight connectors support multiple network configurations. */ export type IMidnightWalletConnector = WalletConnector & { midnightNetworks: GenericNetwork[]; }; /** * Type guard to check if a connector is a Midnight wallet connector. * @param connector - The wallet connector to check * @returns True if the connector is a Midnight wallet connector */ export declare const isMidnightConnector: (connector: WalletConnector | IMidnightWalletConnector) => connector is IMidnightWalletConnector;