import { Path } from '@angular-devkit/core'; export interface ParseOptions { name: string; path?: string; } export interface Location { name: string; path: Path; } export declare class NameParser { /** * Parses the provided options to extract the name and path. * * @param options - The options containing the name and path. * @returns An object containing the parsed name and normalized path. */ parse(options: ParseOptions): Location; }