import * as $dara from '@darabonba/typescript'; export declare class ListContactRequest extends $dara.Model { /** * @remarks * The current page number for pagination. Default value: 1. * * @example * 1 */ currentPage?: number; /** * @remarks * The search keyword. For example, a keyword in the name, email address, or phone number. * * @example * 186 */ keyword?: string; /** * @remarks * The number of contacts to display per page in a paged query. * * @example * 20 */ showSize?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }