/**
 * Represents an error thrown because the client does not have permission to perform a certain action
 */
declare class PartyInvitationExpiredError extends Error {
    constructor();
}
export default PartyInvitationExpiredError;
