export declare type AttachmentData = {
    name: string;
    tokenId: string;
    previewId: string;
    url: string;
    contentType: string;
    md5: string;
    previewState: 'FAILED' | 'PREVIEW_EXISTS' | 'NOT_COMPATIBLE';
};
