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

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