import type { ClientFn } from "../types/core.js";
import type { Prompt } from "../types/prompts.js";
export type ListPromptsParams = ClientFn;
/**
 * List all prompts available to the client.
 *
 * @example
 * ```ts
 * import { listPrompts } from "@arizeai/phoenix-client/prompts";
 *
 * const prompts = await listPrompts({});
 * console.log(prompts);
 * ```
 *
 * @throws {Error} If the prompts cannot be listed or the response is invalid.
 */
export declare function listPrompts({ client: _client, }: ListPromptsParams): Promise<Prompt[]>;
//# sourceMappingURL=listPrompts.d.ts.map