import { ChevronProps } from '../../Chevron/Chevron.interface'; interface CallToActionSectionProps { callToActionRow?: ChevronProps[]; } export declare const useFullClick: (callToActionRow?: ChevronProps[]) => { isClickable: boolean; handleClick: (e: React.MouseEvent) => void; chevronText: string | undefined; }; export declare const CallToActionSection: ({ callToActionRow, }: CallToActionSectionProps) => import("react").JSX.Element | null; export {};