import { BaseError } from "@webiny/feature/api"; type InstallSystemErrorData = { reason: string; }; export declare class InstallSystemError extends BaseError { readonly code: "INSTALL_SYSTEM"; constructor(data: InstallSystemErrorData); } type SystemAlreadyInstalledErrorData = { message?: string; }; export declare class SystemAlreadyInstalledError extends BaseError { readonly code: "SYSTEM_ALREADY_INSTALLED"; constructor(data?: SystemAlreadyInstalledErrorData); } export {};