declare class ConnectAccountLinkInput {
    userId: string;
    refreshUrl: string;
    returnUrl: string;
}
/**
 * Create new link for access to connect account
 */
declare const connectAccountLink: import("@lomray/microservice-helpers/services/endpoint").IReturnWithMeta<never, ConnectAccountLinkInput, Record<string, any>, {
    accountLink: string;
}>;
export { connectAccountLink as default };
