import { LedgerCustom, LedgerError, LedgerErrorReason } from '../common'; /** * Error thrown when performing an action in ledger or on record is not allowed * with current security credentials based on the access rules. */ export declare class AuthForbidden extends LedgerError { /** * * @param detail error detail - message * @param custom custom data record to attach * additional info about the error */ constructor(detail: string, custom?: LedgerCustom); static REASON: LedgerErrorReason; }