import { ReactNode } from 'react'; import { OrderInfoClassesType } from '../types'; declare type OrderInfoPropsType = { classes?: OrderInfoClassesType; loadingIcon?: ReactNode; closeIcon?: ReactNode; infoIcon?: ReactNode; onErrorMsg: (msg: string) => void; onSuccessMsg: (msg: string, data: any) => void; }; declare const OrderInfo: { ({ classes, loadingIcon, closeIcon, infoIcon, onErrorMsg, }: OrderInfoPropsType): JSX.Element; displayName: string; __docgenInfo: { description: string; displayName: string; props: { classes: { defaultValue: { value: string; }; description: string; name: string; required: boolean; type: { name: string; }; }; loadingIcon: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; closeIcon: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; infoIcon: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; onErrorMsg: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; onSuccessMsg: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; }; }; }; export default OrderInfo;