export interface ValidationError {
    error: ValidationError.Error_;
    /** Parameter-specific validation errors */
    param_errors: Record<string, string>;
}
export declare namespace ValidationError {
    interface Error_ {
        /** Error message */
        message: string;
    }
}
