import { FConfigurationDictionary } from "@freemework/common";
export declare class FConfigurationToml extends FConfigurationDictionary {
    static fromFile(tomlConfigFile: string, arrayIndexKey?: string, arrayIndexesKey?: string): Promise<FConfigurationToml>;
    static factory(tomlDocument: string, arrayIndexKey?: string, arrayIndexesKey?: string): Promise<FConfigurationToml>;
    protected constructor(sourceURI: URL, tomlDocument: string, arrayIndexKey: string, arrayIndexesKey: string);
}
