import { SoloError } from '../../../core/errors/solo-error.js';
import { type ResourceType } from '../resources/resource-type.js';
export declare class InvalidResourceNameError extends SoloError {
    static RESOURCE_NAME_INVALID: (type: ResourceType, name: string) => string;
    /**
     * Instantiates a new error with a message and an optional cause.
     *
     * @param name - the invalid pod name.
     * @param type - the type of the resource.
     * @param cause - optional underlying cause of the error.
     * @param meta - optional metadata to be reported.
     */
    constructor(name: string, type: ResourceType, cause?: Error | any, meta?: any);
}
