import type React from 'react';
export type WizardSidebarProps = {
    logo?: React.ReactNode;
    icon?: React.ReactNode;
    heading: string;
    body: string;
    children?: React.ReactNode;
    subtext?: React.ReactNode;
    subtextIcon?: React.ReactNode;
};
export default function WizardSidebar(props: WizardSidebarProps): JSX.Element;
//# sourceMappingURL=wizard-sidebar.d.ts.map