import type { GenericSchema, GenericSchemaAsync } from 'valibot'; import type { ValidationAttributes } from '@conform-to/dom/future'; type ValibotSchema = GenericSchema | GenericSchemaAsync; /** * Type guard to check if a value is a Valibot schema. */ export declare function isSchema(schema: unknown): schema is ValibotSchema; /** * Extracts HTML validation attributes from a Valibot schema. */ export declare function getConstraints(schema: unknown): Record | undefined; export {}; //# sourceMappingURL=schema.d.ts.map