import * as t from 'io-ts'; import { BabelRC } from '../../babel'; import { WebpackRC } from '../../webpack'; export declare const RC: t.PartialC<{ dir: t.StringC; webpack: t.PartialC<{ modifier: t.FunctionC; entry: t.UnionC<[t.StringC, t.RecordC, t.ArrayC]>; output: t.TypeC<{ path: t.StringC; filename: t.UnionC<[t.FunctionC, t.StringC]>; }>; }>; babel: t.PartialC<{ modifier: t.FunctionC; }>; }>; export declare type RC = t.TypeOf & { babel?: BabelRC; webpack?: WebpackRC; };