/**
 * Runs a config print command and parses its output as JSON.
 *
 * @param command - Printer command to exec, such as "npx tslint --print-config".
 * @param config - Configuration file location to read from.
 */
export declare const findReportedConfigurationStandalone: (
    command: string,
    config: string,
) => Promise<Error | import("../input/findReportedConfiguration").DeepPartial<unknown>>;
