@navinc/base-react-components
Version:
Nav's Pattern Library
20 lines (19 loc) • 534 B
TypeScript
export function SeedsOfFinancing({ actionText, copy, imageFileName, maxSteps, onAction, stepsComplete, sections, title, }: {
actionText: any;
copy: any;
imageFileName: any;
maxSteps: any;
onAction: any;
stepsComplete: any;
sections?: any[] | undefined;
title: any;
}): JSX.Element;
export namespace SeedsOfFinancing {
export { Section };
}
export default SeedsOfFinancing;
declare function Section({ onClick, copy, iconName }: {
onClick: any;
copy: any;
iconName: any;
}): JSX.Element;