export interface DeleteProperty {
  /** The ID of the sprint from which the property will be removed. */
  sprintId: string;
  /** The key of the property to remove. */
  propertyKey: string;
}
