import { Knex } from 'knex'; import { AbstractServiceOptions } from '../types'; import { Accountability, SchemaOverview } from '@directus/shared/types'; import { SettingsService } from './settings'; export declare class ServerService { knex: Knex; accountability: Accountability | null; settingsService: SettingsService; schema: SchemaOverview; constructor(options: AbstractServiceOptions); serverInfo(): Promise>; health(): Promise>; }