import type { Category } from '../../../../constants';
import type { PackageFileContent } from '../../types';
import type { JsonataExtractConfig } from './types';
export declare const categories: Category[];
export declare const defaultConfig: {
    pinDigests: boolean;
};
export declare const supportedDatasources: string[];
export declare const displayName = "JSONata";
export declare function extractPackageFile(content: string, packageFile: string, config: JsonataExtractConfig): Promise<PackageFileContent | null>;
