import { BoxProps } from "@specimen/foundation"; import { BaseProps } from "./Base"; import { AnimatedBaseProps } from "./LottiePlayer"; export declare type SpotProps = Pick & { enableAspectRatio?: boolean; }; declare const moods: { positive: { static: string; animated: string; }; cautionary: { static: string; animated: string; }; informative: { static: string; animated: string; }; negative: { static: string; animated: string; }; assertive: { static: string; animated: string; }; }; export interface AnimatedSpotProps extends SpotProps, Omit { id: keyof typeof moods; isAnimated?: boolean; } export declare const AnimatedSpot: ({ id, isAnimated, enableAspectRatio, ...props }: AnimatedSpotProps) => import("@emotion/react/jsx-runtime").JSX.Element; declare const staticSpots: { /** * Engagement */ benefitsSurvey: string; customSurvey: string; customUnattributedSurvey: string; engagementSurvey: string; inclusionSurvey: string; quickEngagementSurvey: string; valuesSurvey1: string; valuesSurvey2: string; wellBeingSurvey1: string; wellBeingSurvey2: string; wellBeingSurvey3: string; changeReadiness: string; changeSuccess: string; performanceDiagnostics: string; leadingThroughCrisis: string; emergencyResponse: string; /** * Experience */ candidateSurvey: string; customOnboardSurvey: string; exitSurvey: string; internSurvey: string; phasedWeek1OnboardSurvey: string; phasedWeek5OnboardSurvey: string; singlePointOnboardSurvey: string; generalOnboardSurvey: string; remoteOnboardSurvey: string; healthAndSafety: string; endOfProbation: string; newWaysOfWorking: string; reOnboarding: string; /** * Performance */ individual360: string; leadership360: string; manager360: string; individual180: string; leadership180: string; manager180: string; teamEffectiveness1: string; /** * Offices */ teamEffectiveness2: string; officesLondon: string; officesMelbourne: string; officesNewYork: string; officesSanFrancisco: string; /** * Values */ amplifyOthers: string; courageToBeVulnerable: string; learnFasterThroughFeedback: string; trustOthersToMakeDecisions: string; /** * COVID-19 */ wellbeingSurvey: string; response: string; remoteWorkQSet: string; returnToWorkplace: string; pulseSurvey: string; /** * New Account */ accountBasics: string; companyDetails: string; employeeData: string; gdpr: string; timezone: string; addUser: string; /** * Skills Coach (previously referred to as Manager Learning) */ strategy: string; resilience: string; essentialResillience: string; remoteManager: string; productivity: string; essentialProductivity: string; influentialCommunication: string; leadingChange: string; managerLearning: string; feedback: string; coaching: string; "1on1": string; /** * Miscellaneous */ actionPlans: string; bCorp: string; behavior: string; changeAgents: string; communications: string; community: string; company: string; conversations: string; dataVisualization: string; goals: string; insights: string; learn: string; microphone: string; paperPen: string; powerfulInsights: string; privacy: string; process: string; resources: string; scienceBackedTools: string; skillsDevelopment: string; viewReports: string; readArticle: string; fastAction: string; baselineSurvey: string; spreadsheetTemplate: string; addImage: string; meetingVoices: string; workshop: string; video: string; reportSharing: string; blankSurvey: string; takeAim: string; action: string; training1: string; training2: string; training3: string; shareReport: string; team1: string; team2: string; templates: string; executiveReportSharing: string; managerReportSharing: string; leaderReportSharing: string; alarm: string; fire: string; fireworks: string; fullImport: string; hrisImport: string; partialImport: string; starburst: string; stop: string; trafficCone: string; trophy: string; underConstruction: string; valueAdd: string; recommendation: string; objective: string; }; interface StaticSpotProps extends SpotProps, Omit { id: keyof typeof staticSpots; } declare const Spot: ({ id, enableAspectRatio, ...props }: StaticSpotProps) => import("@emotion/react/jsx-runtime").JSX.Element; export default Spot;