declare namespace _default { export { features }; export { module }; export { example }; export { properties }; } export default _default; import { features } from "../common"; declare const module: any; declare namespace example { export const title: string; export { items }; export { component }; export const componentClass: any; } import { properties } from "../common"; declare const items: ({ title: string; command: string; jsx?: undefined; component?: undefined; description?: undefined; } | { title: string; jsx: string; command?: undefined; component?: undefined; description?: undefined; } | { title: string; jsx: string; component: JSX.Element; command?: undefined; description?: undefined; } | { title: string; description: string; jsx: string; command?: undefined; component?: undefined; })[]; declare const component: JSX.Element;