import { SmdLabel } from './SmdLabel';
/** Representation of a SMD file */
export interface Smd {
    /** SMD file content */
    data: string;
    /** UUID of SMD file */
    id: string;
    /** Date when information about SMD file aren't valid anymore */
    notAfter: string;
    /** Date before when information about SMD file aren't valid yet */
    notBefore: string;
    /** List of the labels that are protect with that SMD file */
    protectedLabels: SmdLabel[];
    /** TMCH Internal identifier */
    smdId: string;
}
//# sourceMappingURL=Smd.d.ts.map