import { Type, ParserHint, Parser } from "../lib/index.js";
import type { StandardSchemaV1 } from "./standard-schema-spec.js";
interface ConfigureOptions {
    parserFactory: (hint?: ParserHint) => Parser<any, ParserHint>;
}
declare function configure({ parserFactory }: ConfigureOptions): {
    schema: <T>(schema: StandardSchemaV1<unknown, T | undefined>, parser?: Parser<T, never> | undefined) => Type<T>;
};
declare const schema: <T>(schema: StandardSchemaV1<unknown, T | undefined>, parser?: Parser<T, never> | undefined) => Type<T>;
export { configure, schema };
