/** * 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 noDataIllustration: (theme?: string, size?: string) => import("lit-html").TemplateResult<1>; export default noDataIllustration;