import * as t from 'io-ts'; import { Maybe } from 'brookjs-types'; import { ActionType } from 'typesafe-actions'; import * as glob from '../../../glob'; import * as prettier from '../../../prettier'; export declare const RC: t.PartialC<{ dir: t.StringC; }>; export declare type RC = t.TypeOf; export declare type Args = {}; export declare type FileCheck = { path: string; status: 'unchecked'; } | { path: string; status: 'checked'; correct: boolean; } | { path: string; status: 'errored'; error: Error; }; export declare type State = { status: 'globbing' | 'checking' | 'completed'; cwd: string; rc: Maybe; files: FileCheck[]; }; export declare type Action = ActionType;