import { Command } from 'commander'; declare function parseLineCount(value: string | number | undefined): number; declare function resolveGatewayLogPath(configPath: string): string; declare function readLastLines(filePath: string, lineCount: number): Promise; /** * Create logs subcommand */ export declare function createLogsCommand(): Command; export declare const gatewayLogsTestInternals: { parseLineCount: typeof parseLineCount; readLastLines: typeof readLastLines; resolveGatewayLogPath: typeof resolveGatewayLogPath; }; export {};