import { ErrorFactory } from '../common/errors'; export declare enum OrganizationErr { FETCH_FAILED = "organization/fetch-failed", NOT_FOUND = "organization/not-found", ADD_DOCUMENT_FAILED = "organization/add-failed", UPDATE_DOCUMENT_FAILED = "organization/update-failed", ADD_RIB_FAILED = "organization/add-rib-failed", GET_RIBS_FAILED = "organization/fetch-documents-failed", SET_COMMUNICATION_FAILED = "organization/set-communication-failed", ADD_LOGO_FAILED = "organization/add-logo-failed", DELETE_LOGO_FAILED = "organization/delete-logo-failed", CREATE_BACKGROUND_IMAGE_FROM_MEDIA_FAILED = "organization/create-background-image-from-media-failed", CREATE_BACKGROUND_IMAGE_FAILED = "organization/create-background-image-failed", DELETE_BACKGROUND_IMAGE_FAILED = "organization/delete-background-image-failed", CREATE_PICTURE_FAILED = "organization/create-picture-failed", CREATE_PICTURE_FROM_MEDIA_FAILED = "organization/create-picture-from-media-failed", DELETE_PICTURE_FAILED = "organization/delete-picture-failed", CREATE_OPENING_HOURS_SPECIFICATION_FAILED = "organization/create-opening-hours-specification-failed", UPDATE_OPENING_HOURS_SPECIFICATION_FAILED = "organization/update-opening-hours-specification-failed", DELETE_OPENING_HOURS_SPECIFICATION_FAILED = "organization/delete-opening-hours-specification-failed", CREATE_EMPLOYEE_FAILED = "organization/create-employee-failed", UPDATE_EMPLOYEE_FAILED = "organization/update-employee-failed", DELETE_EMPLOYEE_FAILED = "organization/delete-employee-failed", CREATE_FOUNDER_FAILED = "organization/create-founder-failed", UPDATE_FOUNDER_FAILED = "organization/update-founder-failed", DELETE_FOUNDER_FAILED = "organization/delete-founder-failed", ADD_ADDRESS_FAILED = "organization/add-address-failed", UPDATE_ADDRESS_FAILED = "organization/update-address-failed", DELETE_ADDRESS_FAILED = "organization/delete-address-failed", CREATE_ORGANIZATION_FAILED = "organization/create-organization-failed", REGISTER_ORGANIZATION_FAILED = "organization/register-organization-failed", REGISTER_ORGANIZATION_TO_PERSON_FAILED = "organization/register-organization-to-person-failed", SUGGEST_ORGANIZATION_FAILED = "organization/suggest-organization-failed", UPDATE_ORGANIZATION_FAILED = "organization/update-organization-failed", UPDATE_IS_PUBLIC_ORGANIZATION_FAILED = "organization/update-is-public-organization-failed", ENABLE_ROAMING_FAILED = "organization/enable-roaming-failed", DISABLE_ROAMING_FAILED = "organization/disable-roaming-failed", UPDATE_THIRD_PARTY_FAILED = "organization/update-third-party-failed", UPDATE_THIRD_PARTY_IMPOSSIBLE = "organization/update-third-party-impossible", ADD_KYC_FAILED = "organization/add-kyc-failed", GET_KYCS_FAILED = "organization/get-kycs-failed" } export declare const errors: { "organization/fetch-failed": string; "organization/not-found": string; "organization/add-failed": string; "organization/update-failed": string; "organization/add-rib-failed": string; "organization/set-communication-failed": string; "organization/add-logo-failed": string; "organization/delete-logo-failed": string; "organization/create-background-image-from-media-failed": string; "organization/create-background-image-failed": string; "organization/delete-background-image-failed": string; "organization/create-picture-failed": string; "organization/create-picture-from-media-failed": string; "organization/delete-picture-failed": string; "organization/create-opening-hours-specification-failed": string; "organization/update-opening-hours-specification-failed": string; "organization/delete-opening-hours-specification-failed": string; "organization/create-employee-failed": string; "organization/update-employee-failed": string; "organization/delete-employee-failed": string; "organization/create-founder-failed": string; "organization/update-founder-failed": string; "organization/delete-founder-failed": string; "organization/add-address-failed": string; "organization/update-address-failed": string; "organization/delete-address-failed": string; "organization/create-organization-failed": string; "organization/register-organization-failed": string; "organization/suggest-organization-failed": string; "organization/update-organization-failed": string; "organization/update-is-public-organization-failed": string; "organization/enable-roaming-failed": string; "organization/disable-roaming-failed": string; "organization/update-third-party-failed": string; "organization/update-third-party-impossible": string; "organization/register-organization-to-person-failed": string; "organization/fetch-documents-failed": string; "organization/add-kyc-failed": string; "organization/get-kycs-failed": string; }; export declare const errorFactory: ErrorFactory;