import { FC } from "react"; import { JobCache } from "./cache"; import type { ListCliOptions } from "./cli"; import { Config } from "./config"; interface JobListProps { cache: JobCache; opts: ListCliOptions; } declare const JobList: FC; export interface ParseConfig { config: Config; error: Error; } export declare const useConfigFile: (loadedConfig: Config, cache: JobCache) => ParseConfig; export default JobList;