import { type DefaultProps } from '../config'; export interface ResultProps { status?: 'success' | 'info' | 'warning' | 'error' | 'question'; title?: string; description?: string; } export declare const defaultResultProps: DefaultProps; export interface ResultSlots { default?(props: Record): any; title?(props: Record): any; description?(props: Record): any; icon?(props: Record): any; }