export declare class AssetsNotFoundError extends Error {
    /** Category of assets */
    readonly category: string;
    /** Assets id */
    readonly id: string | number;
    constructor(category: string, id: string | number);
}
