import { Cre8Element } from '../cre8-element'; import '../icon/icon'; /** * Field Note gives direction on how to fill out a form field and to alert users of form errors and successes. * It’s used below an input field and never on its own. * @slot - The note content */ export declare class Cre8FieldNote extends Cre8Element { static styles: import("lit").CSSResult[]; /** * Changes the component's treatment to represent an error * @attr {boolean} */ isError?: boolean; /** * Changes the component's treatment to represent a success * @attr {boolean} */ isSuccess?: boolean; /** * DEPRECATED: Icon name used for the icon before to the field note * @deprecated */ iconName?: string; /** * Check if there are success or error states and set "aria-live=polite" */ fieldNoteAriaLive(): 'polite' | 'off' | 'assertive'; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'cre8-field-note': Cre8FieldNote; } } export default Cre8FieldNote; //# sourceMappingURL=field-note.d.ts.map