import type { BentoClient } from '../client'; import type { GetWorkflowsParameters, Workflow } from './types'; export declare class BentoWorkflows { private readonly _client; private readonly _url; constructor(_client: BentoClient); /** * Returns all of the workflows for the site, including their email templates. * * @param parameters Optional pagination parameters (e.g., { page: 2 }) * @returns Promise\ */ getWorkflows(parameters?: GetWorkflowsParameters): Promise; }