import "fp-ts";
import { Either } from "fp-ts/lib/Either";
export declare type Definition = {
    [name: string]: Format;
};
export declare type Format = {
    format?: string | any[];
};
export declare const buildConfigAdapter: (definition: Definition) => Either<string, (key: string) => string>;
