import { SxProps, Theme } from '@mui/material'; interface Props { sx?: SxProps; onClick: () => void; isFirstProject?: boolean; } export declare const CreateProjectCard: ({ sx, onClick, isFirstProject, }: Props) => JSX.Element; export {};