import { binding } from "../binding";
import type { TypeOptions } from "./types";
/** @internal */
export declare function createDateTypeHelpers({ optional }: TypeOptions): {
    toBinding: (value: unknown) => binding.Timestamp;
    fromBinding: (value: unknown) => Date;
};
