export interface PartialMatchResult { match: T | null; candidates: T[]; } export declare function findPartialMatch(input: string, items: T[], getFields: (item: T) => (string | undefined)[]): PartialMatchResult; export declare function filterByPartial(input: string | undefined, items: T[], getFields: (item: T) => (string | undefined)[]): T[]; //# sourceMappingURL=partial-match.d.ts.map