import { Guid, Url } from "@ef-carbon/primitive"; import { IMutable, IOptions, IStatic } from "./IRemote"; import Type from "./Type"; export { IOptions }; export declare class LinkRemote implements IMutable { readonly type: Type.Remote; url: Url; method: string | undefined; headers: { [header: string]: string; }; body: string | undefined; redirect: Guid | undefined; constructor({ url, method, headers, body, redirect }: IOptions); } export { LinkRemote as Remote }; export declare const klass: IStatic; export default LinkRemote;