import type { SxProps } from '@mui/material';
import React, { FC } from 'react';
declare const CtaTile: FC<{
    title: string;
    subTitle?: string;
    image: string | React.ReactNode;
    onClick?: () => void;
    disabled?: boolean;
    sxProps?: SxProps;
    mini?: boolean;
    showArrow?: boolean;
    href?: string;
    icon?: React.ReactNode;
    newPage?: boolean;
}>;
export default CtaTile;
