export namespace dataHooks {
    let composerSidebarContainer: string;
}
export const itemsWithSections: {
    id: number;
    label: string;
    icon: React.JSX.Element;
    sectionTitle: string;
}[];
export const disabledItems: ({
    id: number;
    label: string;
    icon: React.JSX.Element;
    disabled?: undefined;
} | {
    id: number;
    label: string;
    icon: React.JSX.Element;
    disabled: boolean;
})[];
export const items: {
    id: number;
    label: string;
    icon: React.JSX.Element;
}[];
import React from 'react';
//# sourceMappingURL=constants.d.ts.map