/**
 * Represents an error thrown because a party does not exist
 */
declare class PartyNotFoundError extends Error {
    constructor();
}
export default PartyNotFoundError;
