import { ClientInterface } from '../models/clientModel'; /** * Client Repository. */ declare class ClientRepository { /** * Get Client by ID. * * @param appId * @returns Promise */ getClientById(appId: number): Promise; /** * Get Client by Client ID. * * @param clientId * @returns Promise */ getClientByClientId(clientId: string): Promise; } declare const _default: ClientRepository; export default _default;