import type Schema from './Schema.js';
import type { CastFn, Shape } from './types.js';
export default function createCast(shape: Shape, type: string, schemas?: Map<string, Schema>, doGenerateId?: boolean): CastFn;
