import { Cre8Element } from '../cre8-element'; export declare class Cre8UtilityNavItem extends Cre8Element { static styles: import("lit").CSSResult[]; /** * Hide text toggle * 1) Visually hides the text so screenreaders can still read for accessibility when set to true. */ hideText?: boolean; /** * URL of the utility nav item */ href?: string; /** * Icon name */ iconName?: string; /** * Icon position * * * */ iconPosition?: 'before' | 'after'; /** * Text of the utility nav item */ text?: string; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'cre8-utility-nav-item': Cre8UtilityNavItem; } } export default Cre8UtilityNavItem; //# sourceMappingURL=utility-nav-item.d.ts.map