import type { ParserOptions } from './options'; /** * This method takes a list of names and adjusts them so that they are allowed as schema names. * For example in TypeScript a type definition must not start with integer. * The order of the input values is contained in the changing process. * @param names - List of names to be adjusted. * @param options - Parser options. * @returns A list of strings which are possible for schema names. * @internal */ export declare function ensureValidSchemaNames(names: string[], options: ParserOptions): string[];