export type Parser = (data: unknown, logPath: string) => T; export declare const getParser: (schema: { parse: (data: unknown) => T; }) => Parser;