export declare const CANCELLATION_TYPE: 'agent.cancellation'; export interface Cancellation { readonly _type: typeof CANCELLATION_TYPE; readonly message: string; } export declare function createCancellation(message: string): Cancellation; export declare function isCancellation(value: unknown): value is Cancellation;