import { TTypeBoxFromSyntax } from '../typebox/typebox-from-syntax'; import { TValibotFromTypeBox } from './valibot-from-typebox'; import * as t from '@sinclair/typebox'; import * as v from 'valibot'; /** Creates a Valibot type from Syntax */ export type TValibotFromSyntax, Result extends v.BaseSchema = TValibotFromTypeBox> = Result; /** Creates a Valibot type from Syntax */ export declare function ValibotFromSyntax(context: Context, type: Type, options?: t.SchemaOptions): TValibotFromSyntax;