UNPKG

@acrool/react-dialog

Version:
13 lines (12 loc) 369 B
import { FunctionComponent, SVGProps } from 'react'; import { EStatus, TButtonColor } from '../types'; interface IStatusConfig { icon: FunctionComponent<SVGProps<SVGSVGElement> & { title?: string; }>; titleI18n: string; elClass: string; mainBtnColor: TButtonColor; } export declare const themeMap: Record<EStatus, IStatusConfig>; export {};