import { Bytes } from "@zwave-js/shared"; import type { NVM3Object } from "../object.js"; import { NVMFile, type NVMFileCreationOptions, type NVMFileDeserializationOptions } from "./NVMFile.js"; export interface ApplicationNameFileOptions extends NVMFileCreationOptions { name: string; } export declare const ApplicationNameFileID = 266252; export declare class ApplicationNameFile extends NVMFile { constructor(options: NVMFileDeserializationOptions | ApplicationNameFileOptions); name: string; serialize(): NVM3Object & { data: Bytes; }; } //# sourceMappingURL=ApplicationNameFile.d.ts.map