import type { ExecutionTools } from '../execution/ExecutionTools'; import type { PersonaPreparedJson } from '../pipeline/PipelineJson/PersonaJson'; import type { PrepareAndScrapeOptions } from '../prepare/PrepareAndScrapeOptions'; import type { string_persona_description } from '../types/string_persona_description'; /** * Prepares the persona for the pipeline * * @see https://github.com/webgptorg/promptbook/discussions/22 * * @public exported from `@promptbook/core` */ export declare function preparePersona(personaDescription: string_persona_description, tools: Pick, options: PrepareAndScrapeOptions): Promise>;