import Item from './Item'; declare const EXPANSION = "expansion"; interface Expansion { leftIcon?: string; nestedItems: Item[]; primaryText: string; type: typeof EXPANSION; } export default Expansion; export { EXPANSION };