import * as $dara from '@darabonba/typescript'; export declare class ListLivePackageChannelsRequest extends $dara.Model { /** * @remarks * The channel group name. * * This parameter is required. * * @example * channel-group-1 */ groupName?: string; /** * @remarks * The channel name or description. Fuzzy match is supported. * * @example * group-1 */ keyword?: string; /** * @remarks * The page number. Default value: 1. * * @example * 1 */ pageNo?: number; /** * @remarks * The number of entries per page. Default value: 10. * * @example * 10 */ pageSize?: number; /** * @remarks * The sort order by creation time. Default value: desc. * * Valid values: * * * asc * * desc * * @example * desc */ sortBy?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }