import * as React from 'react'; import { Bit } from './BitLike'; export declare type ItemResolverExtraProps = { beforeTitle?: React.ReactNode; minimal?: boolean; preventSelect?: boolean; }; export declare type NormalItem = { id?: string; icon?: React.ReactNode; title?: string; type?: string; subType?: string; identifier?: string; preview?: React.ReactNode; children?: any; location?: string; locationLink?: string; webLink?: string; desktopLink?: string; createdAt?: Date; updatedAt?: Date; comments?: React.ReactNode[]; people?: Bit[]; searchTerm?: string; subTitle?: React.ReactNode; image?: string; afterTitle?: React.ReactNode; after?: React.ReactNode; }; export declare const normalizeItem: (model: Bit) => NormalItem; //# sourceMappingURL=normalizeItem.d.ts.map