import { type TTypeBoxFromValibot } from '../typebox/typebox-from-valibot'; import { type TSyntaxFromTypeBox } from './syntax-from-typebox'; import * as t from '@sinclair/typebox'; import * as v from 'valibot'; /** Creates Syntax from Valibot */ export type TSyntaxFromValibot, TypeBox extends t.TSchema = TTypeBoxFromValibot, Result extends string = TSyntaxFromTypeBox> = Result; /** Creates Syntax from Valibot */ export declare function SyntaxFromValibot>(type: Type): TSyntaxFromValibot;