import * as $dara from '@darabonba/typescript'; export declare class ListFlowsRequest extends $dara.Model { /** * @remarks * Filter by flow name * * @example * my-flow */ flowName?: string; /** * @remarks * Page number * * @example * 1 */ pageNumber?: number; /** * @remarks * Page size * * @example * 10 */ pageSize?: number; /** * @remarks * Workspace ID * * @example * ws-1234567890abcdef */ workspaceId?: string; /** * @remarks * List of workspace IDs * * @example * ws-1234567890abcdef,ws-1234567890bcdefg */ workspaceIds?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }