import * as React from 'react';
import { KeyValuePair } from '../../Utilities/Interface/KeyValuePair';
export interface WizardSummaryPageProps {
    KeyValuePairs: KeyValuePair[];
    header?: string;
}
export declare const WizardSummaryPage: (props: WizardSummaryPageProps) => React.JSX.Element;
