import type { Nullish } from '../../../types';
import type { Preset } from '../types';
export declare function fetchJSONFile(repo: string, fileName: string, _endpoint?: string, tag?: string): Promise<Nullish<Preset>>;
export declare function getPresetFromEndpoint(repo: string, filePreset: string, presetPath: string | undefined, endpoint: string, tag?: string): Promise<Nullish<Preset>>;
