import { StringSchema } from './StringSchema'; import { AnySchema } from './AnySchema'; import { ObjectSchema } from './ObjectSchema'; import { ArraySchema } from './ArraySchema'; import { EnumSchema } from './EnumSchema'; import { NumberSchema } from './NumberSchema'; import { BooleanSchema } from './BooleanSchema'; import { DateSchema } from './DateSchema'; import { OrSchema } from './OrSchema'; export declare class Veni { any(): AnySchema; string(): StringSchema; object(): ObjectSchema; array(): ArraySchema; enum(): EnumSchema; number(): NumberSchema; boolean(): BooleanSchema; date(): DateSchema; or(): OrSchema; } export declare const V: Veni; export { StringSchema, AnySchema, ObjectSchema, ArraySchema, EnumSchema, NumberSchema, BooleanSchema, DateSchema, OrSchema, }; export { Convert } from './convert-types'; export * from './types'; export * from './validate'; export * from './ValidationError';