/** * This file was auto-generated by Fern from our API Definition. */ /** * Strategy to use when updating thread state * * @example * Flatfile.StateUpdateStrategy.Upsert * * @example * Flatfile.StateUpdateStrategy.Replace */ export type StateUpdateStrategy = "upsert" | "replace"; export declare const StateUpdateStrategy: { readonly Upsert: "upsert"; readonly Replace: "replace"; };