import type { VueCodeInformation } from '../types'; declare const raw: { all: { verification: true; completion: true; semantic: true; navigation: true; }; importCompletionOnly: { __importCompletion: true; }; verification: { verification: true; }; completion: { completion: true; }; withoutCompletion: { verification: true; semantic: true; navigation: true; }; navigation: { navigation: true; }; navigationWithoutRename: { navigation: { shouldRename: () => false; }; }; navigationAndCompletion: { navigation: true; completion: true; }; navigationAndVerification: { navigation: true; verification: true; }; withoutNavigation: { verification: true; completion: true; semantic: true; }; semanticWithoutHighlight: { semantic: { shouldHighlight: () => false; }; }; withoutHighlight: { semantic: { shouldHighlight: () => false; }; verification: true; navigation: true; completion: true; }; withoutHighlightAndCompletion: { semantic: { shouldHighlight: () => false; }; verification: true; navigation: true; }; withoutSemantic: { verification: true; navigation: true; completion: true; }; doNotReportTs2339AndTs2551: { verification: { shouldReport: (_source: string | undefined, code: string | number | undefined) => boolean; }; }; doNotReportTs2353AndTs2561: { verification: { shouldReport: (_source: string | undefined, code: string | number | undefined) => boolean; }; }; doNotReportTs6133: { verification: { shouldReport: (_source: string | undefined, code: string | number | undefined) => boolean; }; }; }; export declare const codeFeatures: { [K in keyof typeof raw]: VueCodeInformation; }; export {};