//#region src/types.template.d.ts
/**
 * Template for the bag type.
 * @template ConfigurableType - Type for the `config.configurable` property
 * @template InterruptType - Type for interrupt values
 * @template CustomEventType - Type for custom events
 * @template UpdateType - Type for the submit function updates
 * @template MetaType - Type for the meta property
 */
type BagTemplate = {
  ConfigurableType?: Record<string, unknown>;
  InterruptType?: unknown;
  CustomEventType?: unknown;
  UpdateType?: unknown;
  MetaType?: unknown;
};
//#endregion
export { BagTemplate };
//# sourceMappingURL=types.template.d.cts.map