import type { Loader } from '../../type';
export declare class JSONLoader implements Loader {
    execute(input: string): Promise<any>;
    executeSync(input: string): any;
}
