import { CustomTypeModelFieldType } from "./types.js";

//#region src/types/model/date.d.ts
/**
 * A date custom type field.
 *
 * More details: {@link https://prismic.io/docs/date}
 */
interface CustomTypeModelDateField {
  type: typeof CustomTypeModelFieldType.Date;
  config?: {
    label?: string | null;
    placeholder?: string;
    default?: string;
  };
}
//#endregion
export { CustomTypeModelDateField };
//# sourceMappingURL=date.d.ts.map