export declare type ID = number; export declare type MetaData = { id: ID; key: string; value: string; }; export declare type File = { name: string; file: string; }; declare type LinkBase = { collection: { href: string; }[]; }; export declare type Links = LinkBase & { self: { href: string; }[]; }; export declare type DownloadLinks = LinkBase & { products: { href: string; }[]; order: { href: string; }[]; }; export declare type OrderNoteLinks = Links & { up: { href: string; }[]; }; export declare type RefundLinks = OrderNoteLinks; export declare type ProductVariationLinks = OrderNoteLinks; export {};