/** * Parses a string to an integer with validation. * Rejects decimal numbers explicitly. * * @param str - String to parse * @param context - Context string for error messages * @param label - Label for the value type (e.g., "ID", "baud rate") * @returns Parsed integer * * @example * parseInteger("123", "1-5", "ID") // 123 * parseInteger("12.5", "1-5", "ID") // throws Error */ export declare function parseInteger(str: string, context: string, label: string): number; //# sourceMappingURL=parse-integer.d.ts.map