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