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

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