import React, { ReactNode, CSSProperties } from "react"; export interface IStep { label: string; optional?: boolean; content: any; } interface OptionCardProps { label: string; value?: string; iconSrc?: string; iconComponent?: ReactNode; onClick?: () => void; selected: boolean; style?: CSSProperties; endComponent?: ReactNode; } declare const OptionCard: React.FunctionComponent; export default OptionCard; //# sourceMappingURL=OptionCard.d.ts.map