export * from './types/common';
export * from './types/passport';
export * from './types/config';
import { Chain } from "thirdweb/chains";
export interface PassportSDKConfig {
    chain: Chain;
    registryAddress: string;
    client: any;
}
export interface PassportSDKInterface {
    readonly config: PassportSDKConfig;
}
