import { ReactNode } from 'react'; import { TStepsCarouselView } from '../../components/StepsCarousel'; import { TColorScheme } from '../../types/common'; export type OurProcessProps = { title: ReactNode; label: string; colorScheme: TColorScheme; steps: TStepsCarouselView; buttonLabel?: string; buttonLink?: string; }; export declare const OurProcess: ({ title, label, colorScheme, steps, buttonLabel, buttonLink }: OurProcessProps) => import("react").JSX.Element;