import { Arguments } from 'yargs'; import { State, Args } from './types'; declare const initialState: (args: Arguments, { rc, cwd }: { rc: unknown; cwd: string; }) => State; export default initialState;