import { CasterFn } from './types';
declare const optional: <T>(caster: CasterFn<T>) => CasterFn<T | undefined>;
export default optional;
