import type { Extended } from './isExtension.js';
export declare const $REMOVE: unique symbol;
export type $REMOVE = typeof $REMOVE;
export declare const $remove: () => REMOVE;
export declare const isRemoval: (input: unknown) => input is {
    [$REMOVE]: unknown;
};
export type REMOVE = Extended<{
    [$REMOVE]: true;
}>;
