import React from 'react'; import { SectionContentSize } from '../../../layout/section/baseSection'; import { TripCardProps } from '../../../tripCard'; declare type ChildrenProps = Array> | React.ReactElement; export declare type CardsGridSectionProps = Readonly<{ children: ChildrenProps; className?: string; contentSize?: SectionContentSize; title?: string | JSX.Element; buttonTitle?: string; buttonHref?: string | JSX.Element; }>; export declare const CardsGridSection: ({ children, className, contentSize, title, buttonTitle, buttonHref, }: CardsGridSectionProps) => JSX.Element; export {};