import { ReactElement } from 'react'; import { CommonProps } from '../common'; export interface ResultProps extends CommonProps { /** * Operating area, e.g. action buttons. */ extra?: ReactElement | string; /** * Custom Icon to represent result type. */ icon?: ReactElement; /** * Status to determine result style. This only gets effect if icon is not defined. */ status?: 'success' | 'error' | 'info' | 'warning' | '404' | '403' | '500' | '503'; /** * Subtitle text to show more details. */ subTitle?: string | ReactElement; /** * Main text to show result description. */ title: string | ReactElement; } declare const Result: ({ extra, subTitle, title, status, icon, id, className, style, sx, "data-test-id": dataTestId, }: ResultProps) => ReactElement; export default Result;