import { PageDashboardCardWidth } from './PageDashboardCard';
import { ReactNode } from 'react';
export declare function PageDashboardCarousel(props: {
    title: string;
    linkText?: string;
    to?: string;
    width?: PageDashboardCardWidth;
    children: ReactNode;
    footerActionButton?: {
        icon?: ReactNode;
        title: string;
        onClick: () => void;
    };
}): import("react/jsx-runtime").JSX.Element;
