import { CLIBaseError, SeverityLevel } from './cliBaseError'; export interface PreconditionErrorOptions { category?: string; level?: SeverityLevel; } export declare class PreconditionError extends CLIBaseError { constructor(message: string, options?: PreconditionErrorOptions); }