import type { Schema, SchemaExtendedValue } from '../../../../schema/index.js'; import type { Reference } from '../types.js'; import type { Extended } from './isExtension.js'; export declare const $GET: unique symbol; export type $GET = typeof $GET; export type GET = Extended<{ [$GET]: VALUE; }>; export declare const $get: = undefined>(reference: REFERENCE, fallback?: FALLBACK) => GET; export declare const isGetting: (input: unknown) => input is { [$GET]: unknown; };