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 {};