import { BaseRequest } from '.'; export declare namespace person { interface Person { personId: string; firstName: string; lastName: string; salutation: string; deleted: boolean; } interface SelectPersonRequest extends BaseRequest { /** * defaults to false, set it to true allows multiple selection. */ multiSelection?: boolean; /** * pre-populates the string in the search box. */ searchString?: string; } interface OpenPersonRequest extends BaseRequest { personId: string; } interface Api { /** * Return selected person(s). */ selectPerson(request?: SelectPersonRequest): Promise; openPerson(request: OpenPersonRequest): void; } }