import { FC, ReactNode } from 'react'; export type CardContainerProps = { maxHeight: number | string; children: ReactNode; }; export declare const CardContainer: FC;