import { CSSProperties, ReactElement } from 'react'; interface Props { style?: CSSProperties; error?: boolean; } export default function Card({ style, error }: Props): ReactElement; export {};