import type { ComponentFactory } from '@teambit/component'; import type { ReactMain } from './react.main.runtime'; export declare function reactSchema(react: ReactMain): { typeDefs: import("graphql").DocumentNode; resolvers: { ComponentHost: { getDocs: (host: ComponentFactory, { id }: { id: string; }) => Promise<{ abstract: any; filePath: any; properties: any; }>; }; }; };