@cainiaofe/cn-ui-m
Version:
10 lines (9 loc) • 319 B
TypeScript
/// <reference types="react" />
import type { CnFormArrayCardProps } from '../types/form-array-card-props';
type Props = {
defaultCardTitle: string;
item: unknown;
index: number;
} & Pick<CnFormArrayCardProps, 'title'>;
export declare const getTitle: (props: Props) => import("react").ReactNode;
export {};