export type DenoTypeCheck = boolean | 'none' | 'local' | 'all'; /** * @returns the Deno flag to enable type checking based on the input schema value * */ export declare function processTypeCheckOption(check: DenoTypeCheck): string; /** * handle args for: * --cert * --check * --lock-write * --no-lock * --no-npm * --no-remote * --node-modules-dir * --quiet * --reload * --unstable * --watch **/ export declare function processCommonArgs(options: Record): string[];