/** * Signals that the requested operation could not be completed because the target already exists. * * @public exported from `@promptbook/core` */ export declare class ConflictError extends Error { readonly name = "ConflictError"; constructor(message: string); }