import { IAbstractConnectorOptions } from "../../helpers"; export interface IVenlyConnectorOptions extends IAbstractConnectorOptions { clientId: string; secretType?: string; environment?: string; authenticationOptions?: { idpHint?: string; }; } declare const ConnectToVenly: (Venly: any, opts: IVenlyConnectorOptions) => Promise; export default ConnectToVenly; //# sourceMappingURL=venly.d.ts.map