import { t } from '../common';
declare type IHttpClientCellLinksArgs = {
    links: t.ICellData['links'];
    urls: t.IUrls;
    http: t.IHttp;
};
export declare class HttpClientCellLinks implements t.IHttpClientCellLinks {
    static create(args: IHttpClientCellLinksArgs): t.IHttpClientCellLinks;
    private constructor();
    private readonly args;
    readonly list: t.IHttpClientCellLink[];
    get files(): t.IHttpClientCellLinkFile[];
    toObject(): t.IUriMap | undefined;
    private toLink;
}
export {};
