import { LitElement } from 'lit'; import type { CaveatVariant } from '../../types/index.js'; /** * @tag loquix-caveat-notice * @summary Informational notice about AI limitations shown to the user. * * @csspart notice - The notice container element. * * @cssprop [--loquix-caveat-text-color] - Text colour. * @cssprop [--loquix-caveat-bg] - Background for inline / contextual variants. * @cssprop [--loquix-caveat-font-size] - Font size (default 0.6875rem). * @cssprop [--loquix-caveat-padding] - Inner padding. */ export declare class LoquixCaveatNotice extends LitElement { static styles: import("lit").CSSResult[]; private _localize; /** Caveat message text. */ message?: string; /** Display variant. */ variant: CaveatVariant; private _renderWarningIcon; protected render(): import("lit").TemplateResult<1>; } //# sourceMappingURL=loquix-caveat-notice.d.ts.map