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