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