import { OneNoteReader } from "../reader"; /** * The {@link FileNodeListHeader} structure specifies the beginning of a {@link FileNodeListFragment} structure (section 2.4.1). */ export declare class FileNodeListHeader { /** * An unsigned integer; MUST be "0xA4567AB1F5F7F4C4". */ readonly uintMagic: number; /** * An unsigned integer that specifies the identity of the file node list (section 2.4) this fragment belongs to. MUST be equal to or greater than 0x00000010. The pair of FileNodeListID and nFragmentSequence fields MUST be unique relative to other FileNodeListFragment structures in the file. */ readonly FileNodeListID: number; /** * An unsigned integer that specifies the index of the fragment in the file node list containing the fragment. The nFragmentSequence field of the first fragment in a given file node list MUST be 0 and the nFragmentSequence fields of all subsequent fragments in this list MUST be sequential. */ readonly nFragmentSequence: number; constructor(reader: OneNoteReader); }