export type ResultType = 'primary' | 'info' | 'success' | 'warning' | 'error';
export interface ResultSlots {
    icon?: () => any;
    title?: () => any;
    description?: () => any;
    extra?: () => any;
}
export declare const resultTypes: readonly ResultType[];
