/** * Indicates whether Square sends an email notification to team members * when a scheduled shift is published and which team members receive the notification. */ export declare const ScheduledShiftNotificationAudience: { readonly All: "ALL"; readonly Affected: "AFFECTED"; readonly None: "NONE"; }; export type ScheduledShiftNotificationAudience = (typeof ScheduledShiftNotificationAudience)[keyof typeof ScheduledShiftNotificationAudience];