export declare class NgxParam {
    /**
     * Name of the param
     */
    private readonly _name;
    get name(): string;
    /**
     * Returns the current snapshoot of the value in the url route
     */
    readonly snapshotValue: import("@angular/core").Signal<string>;
    /**
     * Listens for change on param in the route
     */
    readonly listenForValue: import("@angular/core").Signal<import("rxjs").Observable<string>>;
    constructor(name: string);
}
