/** * Copyright IBM Corp. 2025 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ /** * Generates an error illustration SVG based on the specified theme and size. * * @param {string} [theme='light'] - The theme of the illustration, either 'light' or 'dark'. * @param {string} [size='large'] - The size of the illustration, such as 'large' or other predefined sizes. * @returns {import('lit').TemplateResult} The SVG illustration as a Lit template result. */ declare const errorIllustration: (theme?: string, size?: string) => import("lit-html").TemplateResult<1>; export default errorIllustration;