import type { Extended } from './isExtension.js';
export declare const $SUBTRACT: unique symbol;
export type $SUBTRACT = typeof $SUBTRACT;
export type SUBTRACT = Extended<{
[$SUBTRACT]: [A, B];
}>;
export declare const $subtract: (a: A, b: B) => SUBTRACT;
export declare const isSubtraction: (input: unknown) => input is {
[$SUBTRACT]: unknown;
};