import { EventEmitter } from '../../stencil-public-runtime';
import { LinkGroup } from './mocks';
export declare class SlLinkGroup {
    /** List of links as an array of LinkGroup types */
    linkGroups: LinkGroup[];
    /** Returns the url value of the clicked link */
    linkClicked: EventEmitter<string>;
    private onLinkClicked;
    private getLinkIcon;
    render(): any;
}
