import { AbstractFileAdapter } from '../base/AbstractFileAdapter';
export declare class JsonFileAdapter extends AbstractFileAdapter {
    canHandle(filePath: string): boolean;
    read(filePath: string): Promise<Record<string, any>>;
    getFormat(): string;
    getSupportedExtensions(): string[];
}
//# sourceMappingURL=JsonFileAdapter.d.ts.map