import { LogsCheckCommandHandlerArgsType, LogsCheckCommandHandlerResultType } from "./check"; declare type LogsStrictCommandHandlerArgsType = Pick & {}; declare type LogsStrictCommandHandlerResultType = LogsCheckCommandHandlerResultType & {}; /** * 設問1の処理を実施する関数 * * 具体的な処理は、設問2の処理を実施する関数に移譲している (n=1) */ export declare const logsStrictCommandHandler: ({ logFilePath, }: LogsStrictCommandHandlerArgsType) => Promise; export {};