/** @jsxImportSource @emotion/react */ import React from 'react'; import { Field } from '../core/cardDataCore'; import StrivveCore from '../core/strivveCore'; export interface CardDataFormProps { displayGrid: any[]; fields: Field[]; submit: React.FormEventHandler; change: (name: string, value: any) => void; disabled?: boolean; values?: { [key: string]: any; }; onCancel?: () => void; core?: StrivveCore; } declare function CardDataForm({ displayGrid, fields, submit, change, disabled, values, onCancel, core, }: CardDataFormProps): import("@emotion/react/jsx-runtime").JSX.Element; export default CardDataForm;