import { AbstractEntity } from '../../../abstractEntity'; export declare enum GetLicenseAttachmentResultFields { COLUMN_NAME = "name", COLUMN_LAST_MODIFIED = "lastModified", COLUMN_URL = "url", COLUMN_METADATA = "metadata" } export declare type GetLicenseAttachmentResultData = { [GetLicenseAttachmentResultFields.COLUMN_NAME]: string; [GetLicenseAttachmentResultFields.COLUMN_LAST_MODIFIED]: string; [GetLicenseAttachmentResultFields.COLUMN_URL]: string; [GetLicenseAttachmentResultFields.COLUMN_METADATA]?: Record; }; export declare class GetLicenseAttachmentResult extends AbstractEntity { #private; constructor(input: GetLicenseAttachmentResultData); get name(): string; get lastModified(): string; get url(): string; get metadata(): Record | undefined; toJSON(): GetLicenseAttachmentResultData; }