import { Client } from '@loopback/testlab'; import { NoteApplication } from '../../application'; import { Note } from '../../models/note.model'; import { ExpressServer } from '../../server'; export declare function setupExpressApplication(): Promise; export interface AppWithClient { server: ExpressServer; client: Client; lbApp: NoteApplication; } /** * Generate a complete Note object for use with tests. * @param A partial (or complete) Note object. */ export declare function givenNote(note?: Partial): Note;