import { Prisma, PrismaClient } from '../../generated/prisma-client'; declare const networkDevicesWithModelsAndCredentials: { include: { deviceModel: { include: { deviceType: boolean; vendor: boolean; }; }; deviceCredential: boolean; }; }; export type NetworkDevicesWithModelsAndCredentials = Prisma.NetworkDeviceGetPayload; /*** * Get all network devices from the database * @param prisma client instance * @param devId device id, 0 - for all devices otherwise, only device with this id will be returned * @param enabled enabled flag, true - only enabled devices, false - all devices (enabled and disabled) */ export declare function getNetworkDevices(prisma: PrismaClient, devId?: number, enabled?: boolean): Promise; export {};