import { Cre8Element } from '../cre8-element'; /** * The Dropdown item component is designed to be used with Dropdown component, each item represents a * selectable option or action within the dropdown menu. It can be configured to trigger actions, navigate * to links, initiate commands when clicked. * * @slot - The label content for the dropdown item. * * @fires dropdown-item-select - Fires when the item is clicked. `event.detail.originalEvent` holds the source `MouseEvent`. */ export declare class Cre8DropdownItem extends Cre8Element { static styles: import("lit").CSSResult[]; /** * The accessible label for the item. Falls back to the item's text content when unset. */ ariaLabel: string; private _handleClick; connectedCallback(): void; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'cre8-dropdown-item': Cre8DropdownItem; } } export default Cre8DropdownItem; //# sourceMappingURL=dropdown-item.d.ts.map