/// <reference types="react" />
import { UiSchema } from '@rjsf/core';
import { SummaryFormat, Step, FormSchema } from './types';
export interface SummaryTableProps {
    isWizard?: boolean;
    formData: any;
    callbackFn?: Function;
    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): JSX.Element;
