import { Header } from './handlers/header'; import { Table } from './handlers/tables'; import { Block } from './handlers/blocks'; import { EntityData } from './handlers/entities'; import { Objects } from './handlers/objects'; export interface FileInfo { header: Header; blocks: Block[]; entities: EntityData[]; objects: Objects; tables: Table; } declare const _default: (string: string) => FileInfo; export default _default;