import { BootstrapElement } from '@bootstrap-wc/core'; export type FormTextKind = 'help' | 'valid' | 'invalid'; /** * `` — `.form-text`, `.valid-feedback`, or `.invalid-feedback`. * * The host element IS the form text. Bootstrap's `.form-text` / * `.valid-feedback` / `.invalid-feedback` classes are applied to the host so * that authors can reference it via `aria-describedby` using the host's `id`, * and so that parent layouts (e.g. `.row > .col-auto`) can size it correctly * across the shadow boundary. By default the host renders as a block (matching * Bootstrap's block-level help-text example). Set `inline` to keep it inline * for layouts that place it next to an input (e.g. inside a flex row). * * @slot - Form text content. */ export declare class BsFormText extends BootstrapElement { kind: FormTextKind; inline: boolean; protected hostClasses(): string; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'bs-form-text': BsFormText; } } //# sourceMappingURL=form-text.d.ts.map