/// <reference types="react" />
export interface IDashboardLink {
    key: string;
    title: string;
    icon: string;
    url: string;
    permissions?: string[];
}
export interface IDashboardSection {
    key: string;
    component: JSX.Element;
    permissions?: string[];
}
declare const Dashboard: () => JSX.Element;
export default Dashboard;
