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