import React from 'react'; import { CX } from '@epam/uui-core'; import { ThemeId } from './themes'; export interface DocItem { id: string; name: string; component?: any; examples?: { name?: string; componentPath?: any; descriptionPath?: string; onlyCode?: boolean; cx?: CX; themes?: ThemeId[]; }[]; renderContent?: () => React.ReactNode; parentId?: string; order?: number; tags?: string[]; markIsNew?: boolean; } //# sourceMappingURL=docItem.d.ts.map