import { UiSchema } from '@rjsf/utils';
import { FormSchema, Step, SummaryFormat } from './types';
export interface SummaryTableProps {
    isWizard?: boolean;
    formData: any;
    callbackFn?: (screenId: string) => void;
    steps: Step[];
    schema: FormSchema;
    uiSchema: UiSchema;
}
export declare function getFlatData(formData: any, steps: Step[], schema: FormSchema, uiSchema: UiSchema): SummaryFormat[];
export default function SummaryTable(props: SummaryTableProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=SummaryTable.d.ts.map