/** * Indicates whether customers should be included in, or excluded from, * the result set when they match the filtering criteria. */ export declare const CustomerInclusionExclusion: { readonly Include: "INCLUDE"; readonly Exclude: "EXCLUDE"; }; export type CustomerInclusionExclusion = (typeof CustomerInclusionExclusion)[keyof typeof CustomerInclusionExclusion];