import * as Either from 'fp-ts/lib/Either';
import { PortmanConfig } from 'types';
export declare const parsePortmanConfig: (data: PortmanConfig) => Promise<Either.Either<Record<string, unknown>, PortmanConfig>>;
