import { default as React } from 'react';
import { Control } from 'react-hook-form';
export interface ListCardItem {
    id: string | number;
    header?: string;
    chipText?: string;
    leftAction?: {
        name: string;
        label?: string;
    };
    rightAction?: {
        name: string;
        label?: string;
    };
}
export interface FinListCardsProps {
    name: string;
    control: Control<any>;
    items: ListCardItem[];
    sx?: any;
    cardSx?: any;
}
export declare const FinListCards: React.FC<FinListCardsProps>;
