import { Query as TQuery, AuthService, BaseController, AuthenticatedRequest } from '@juicyllama/core'; import { ConnectionService } from './connection.service'; import { CONNECTION_T as T } from './connection.constants'; export declare class ConnectionController extends BaseController { readonly authService: AuthService; readonly service: ConnectionService; readonly tQuery: TQuery; constructor(authService: AuthService, service: ConnectionService, tQuery: TQuery); getConnections(req: AuthenticatedRequest, account_id: number, connection_identifier: string): Promise; createConnection(req: AuthenticatedRequest, account_id: number, connection_identifier: string, user_id: number): Promise; deleteConnection(req: AuthenticatedRequest, account_id: number, connection_identifier: string, user_id: number): Promise; }