import React from "react"; import type { NoteConfig } from "../Feedback"; interface ResolverProps { type: string; searchLimit: number; onResolve: (data: { results: object[]; input: object; }) => void; variant?: "dual" | "query" | "schema"; /** * API module to resolve lookups against. * */ apiPackage?: object; /** * enableAutocomplete bool is used to enable/disable autocomplete at the workflow level rather than the schema level. */ enableAutocomplete?: boolean; /** * Notes can be used to pass in extra information to the user about the workflow */ notes?: NoteConfig[]; } declare const Resolver: React.FC; export default Resolver; //# sourceMappingURL=index.d.ts.map