import React from 'react'; interface Props { sourceImage?: any; title: string; description?: string; children?: any; buttons?: Array; withOpacity?: boolean; descriptionStyle?: object; } declare const GeneralStep: ({ sourceImage, title, description, children, buttons, withOpacity, descriptionStyle, }: Props) => React.JSX.Element; export default GeneralStep; //# sourceMappingURL=index.d.ts.map