import { ReactNode } from 'react'; type Props = { children: ReactNode; className?: string; onClick?: VoidFunction; }; export declare const CardTile: ({ children, onClick, className, }: Props) => import("react/jsx-runtime").JSX.Element; export {};