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