import * as core from "../core/index.js"; import * as schemas from "./schemas.js"; export interface ZodCoercedString extends schemas._ZodString> { } export declare function string(params?: string | core.$ZodStringParams): ZodCoercedString; export interface ZodCoercedNumber extends schemas._ZodNumber> { } export declare function number(params?: string | core.$ZodNumberParams): ZodCoercedNumber; export interface ZodCoercedBoolean extends schemas._ZodBoolean> { } export declare function boolean(params?: string | core.$ZodBooleanParams): ZodCoercedBoolean; export interface ZodCoercedBigInt extends schemas._ZodBigInt> { } export declare function bigint(params?: string | core.$ZodBigIntParams): ZodCoercedBigInt; export interface ZodCoercedDate extends schemas._ZodDate> { } export declare function date(params?: string | core.$ZodDateParams): ZodCoercedDate;