import { type DynamicContextProps } from "@dynamic-labs/sdk-react-core"; import React from "react"; import { type DynamicEnvironment } from "../../constants"; interface UniversalSignInContextProviderProps extends Omit { /** * The Dynamic environment to use. * - "sandbox": Development/testing environment * - "live": Production environment * * This must be explicitly specified - no default is provided to prevent accidental production usage. */ environment: DynamicEnvironment; /** * Chain ID to switch to when a wallet is first connected. * Defaults to ZetaChain mainnet (7000). */ initialChainId?: number; /** * Dynamic settings to merge with defaults. * Note: environmentId and walletConnectors are automatically set and cannot be overridden. * Built-in CSS overrides are applied after user-provided cssOverrides to ensure consistent UX. */ settings?: Omit; } export declare const UniversalSignInContextProvider: React.FC; export default UniversalSignInContextProvider; //# sourceMappingURL=UniversalSignInContextProvider.d.ts.map