import { State } from './state.js';

declare class Versioninfo {
    __classname__: string;
    Version: string | null;
    User: string | null;
    Comment: string | null;
    Slugline: string | null;
    Created: string | null;
    Object: string | null;
    State: State | null;
    Attachment: string | null;
    constructor(Version?: string | null, User?: string | null, Comment?: string | null, Slugline?: string | null, Created?: string | null, Object?: string | null, State?: State | null, Attachment?: string | null);
}

export { Versioninfo };
