/** A function that parses a string value into the target type. */ export type ParseFunc = (value: string) => T; /** * @deprecated use zod instead */ export declare const tryParse: (func: ParseFunc, value?: string) => (T & {}) | undefined; //# sourceMappingURL=tryParse.d.ts.map