import type { Extended } from './isExtension.js'; export declare const $PREPEND: unique symbol; export type $PREPEND = typeof $PREPEND; export type PREPEND = Extended<{ [$PREPEND]: VALUE; }>; export declare const $prepend: (value: VALUE) => PREPEND; export declare const isPrepending: (input: unknown) => input is { [$PREPEND]: unknown; };