import { CSSProperties } from 'react'; import { LingXiEdFC } from '@lingxiteam/types'; export interface MyResultEDProps { status: 'success' | 'error' | 'info' | 'warning' | '404' | '403' | '500'; title: string; subTitle: string; backgroundType?: any; style: CSSProperties; } declare const ResultED: LingXiEdFC; export default ResultED;