/** * This file was auto-generated by Fern from our API Definition. */ export type CalculationType = "COUNT_EMPTY" | "COUNT_NON_EMPTY" | "PERCENT_EMPTY" | "PERCENT_NON_EMPTY" | "COUNT_CHANGED" | "PERCENT_CHANGED" | "SUM" | "AVERAGE" | "MIN" | "MAX"; export declare const CalculationType: { readonly CountEmpty: "COUNT_EMPTY"; readonly CountNonEmpty: "COUNT_NON_EMPTY"; readonly PercentEmpty: "PERCENT_EMPTY"; readonly PercentNonEmpty: "PERCENT_NON_EMPTY"; readonly CountChanged: "COUNT_CHANGED"; readonly PercentChanged: "PERCENT_CHANGED"; readonly Sum: "SUM"; readonly Average: "AVERAGE"; readonly Min: "MIN"; readonly Max: "MAX"; };