import { ReactNode } from 'react'; export type StillHaveQuestionsVariant = 'StillHaveQuestions' | 'JoinOurTeam'; export type StillHaveQuestionsProps = { variant?: StillHaveQuestionsVariant; image?: string; title?: ReactNode; titleHighlight?: 'light' | 'dark'; description?: string; button?: { text: string; link: string; }; buttonColor?: 'secondary' | 'primary-invert' | 'primary'; colorScheme?: 'light' | 'dark'; }; export declare const StillHaveQuestions: ({ variant, image, title, titleHighlight, description, button, buttonColor, colorScheme, }: StillHaveQuestionsProps) => import("react").JSX.Element;