import type { TSchema } from '../../type/schema/index.mjs'; import type { StaticDecode } from '../../type/static/index.mjs'; /** Decodes a value or throws if error */ export declare function Decode, Result extends Static = Static>(schema: T, references: TSchema[], value: unknown): Result; /** Decodes a value or throws if error */ export declare function Decode, Result extends Static = Static>(schema: T, value: unknown): Result;