export declare class BiDropdownItem { private inheritedAttributes; el: HTMLBiDropdownItemElement; /** * Disable the dropdown item. * @default false */ disabled: boolean; /** * Don't close the dropdown which the item belongs to when clicked. * This is useful when you want to keep the dropdown open after selecting an item. * @default false */ preventCloseOnClick: boolean; /** * Contains a URL or a URL fragment that the hyperlink points to. * If this property is set, a link styled as a button will be rendered. */ href?: string; /** * Specifies where to open the linked URL. * Only applies when an `href` is provided. */ target?: '_blank' | '_self' | '_parent' | '_top'; componentWillLoad(): void; render(): any; private handleClick; }