/// import { OneOrMany } from '@google-cloud/datastore/entity'; import { CookieOptions } from 'express'; interface ServerOptions { csp?: object; csrf?: { ignorePaths: OneOrMany; }; session: { secret: string; projectId?: string; apiEndpoint?: string; cookie?: CookieOptions; }; } interface Express { use(...handlers: Function[]): void; use(paths: OneOrMany, ...handlers: Function[]): void; set(property: string, value: boolean): void; } export declare const configureExpress: (expressApp: Express, options: ServerOptions) => void; export {};