import { Guid } from "@ef-carbon/primitive"; import { IMutable, IOptions, IStatic } from "./IDirect"; import Type from "./Type"; export { IOptions }; export declare class LinkDirect implements IMutable { readonly type: Type.Direct; id: Guid; redirect: Guid | undefined; constructor({ id, redirect }: IOptions); } export { LinkDirect as Direct }; export declare const klass: IStatic; export default LinkDirect;