import type { ReactNode } from 'react'; interface FieldCardProps { label?: string; children: ReactNode; className?: string; labelSize?: '1' | '2' | '3'; } export declare const FieldCard: { ({ label, children, className, labelSize }: FieldCardProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export {};