/// /// /// /// import { ConfigType, Defaults } from "./config"; import { ThemeForClient } from "./plugins/packages/themes"; declare type ServerOptions = { dev: boolean; }; export declare type ClientConfiguration = Pick & { fileUpload: boolean; ldapEnabled: boolean; isUpdateAvailable: boolean; applicationServerKey: string; version: string; gitCommit: string | null; defaultTheme: string; themes: ThemeForClient[]; defaults: Defaults; fileUploadMaxFileSize?: number; }; export default function (options?: ServerOptions): Promise; export {};