/**
 * ModuleConfig is the configuration object for the FdpConnectModule.
 */
export declare class ModuleConfig {
    providers: Record<string, ProviderConfig>;
}
export declare class ProviderConfig {
    options: Record<string, string | object>;
    driver: any;
    type: string;
}
