import type { Options, ParserOptions } from "./options.js"; import type { JSONSchema, SchemaCallback } from "./types"; export interface NormalizedArguments = ParserOptions> { path: string; schema: S; options: O & Options; callback: SchemaCallback; } /** * Normalizes the given arguments, accounting for optional args. */ export declare function normalizeArgs = ParserOptions>(_args: Partial): NormalizedArguments; export default normalizeArgs;