import { CSSProperties } from 'react'; type Headers = { heading: string; subHeading: string; }; type GetStartedProps = { userId?: string; token?: string; questId: string; cardBackground?: string; onCompleteAllStatus?: () => void; iconUrls?: Array; uniqueUserId?: string; uniqueEmailId?: string; cardBorderColor?: string; headingText?: string; descriptionText?: string; autoHide?: boolean; showProgressBar?: boolean; completedButtonColor?: string; completedButtonBackgroundColor?: string; arrowColor?: string; showLoadingIndicator?: boolean; showAnnouncement?: boolean; allowMultiClick?: boolean; ButtonType?: "Arrow" | "Buttons"; showFooter?: boolean; Headers?: Headers[] | undefined; onLinkTrigger?: (url: string, index: number) => void | boolean; template?: 1 | 2; isImageOpen?: boolean; styleConfig?: { Heading?: CSSProperties; Description?: CSSProperties; PrimaryButton?: CSSProperties; SecondaryButton?: CSSProperties; Form?: CSSProperties; Footer?: { FooterStyle?: CSSProperties; FooterTextStyle?: CSSProperties; FooterIcon?: CSSProperties; FooterText?: string; FooterLink?: string; }; Card?: CSSProperties; Topbar?: CSSProperties; ProgressBar?: { barColor?: string; ProgressText?: CSSProperties; barParentColor?: string; }; CardContainer?: CSSProperties; Icon?: CSSProperties; Arrow?: { Background?: string; IconColor?: string; CompletedBackground?: string; CompletedIconColor?: string; }; IsImageOpen?: { ContainerDiv?: CSSProperties; ImageContainer?: { ImageContainerProperties?: CSSProperties; Image?: CSSProperties; }; }; }; onLoad?: () => void; variation?: string; isAutoVerify?: boolean; }; declare function GetStarted({ userId, token, questId, onCompleteAllStatus, iconUrls, uniqueUserId, headingText, descriptionText, uniqueEmailId, autoHide, showProgressBar, template, arrowColor, showLoadingIndicator, showAnnouncement, ButtonType, allowMultiClick, onLinkTrigger, showFooter, styleConfig, isImageOpen, onLoad, variation, Headers, isAutoVerify }: GetStartedProps): false | import("react/jsx-runtime").JSX.Element; export default GetStarted;