export declare class SlSplitButtonListItem {
    /**
     * If the item is not selectable, it is neither highlighted nor does it have cursor: pointer.
     */
    selectable: boolean;
    /**
     * The URL this item should link to (if it’s a regular link not handled by JS).
     */
    href: string;
    /**
     * The icon which is displayed before the text.
     */
    iconName?: string;
    /**
     * Language of the page the URL points to.
     */
    hreflang?: string;
    /**
     * Target of the link ("&#95;blank", "&#95;parent", "&#95;top", "&#95;self", or the name of a window or frame)
     */
    target?: string;
    /**
     * Whether the item is disabled.
     */
    disabled: boolean;
    render(): any;
}
