import { ExtractPropTypes, PropType } from 'vue';
import { ConfigurableProps } from '@vexip-ui/config';
import { ResultSlots } from './symbol';
export declare const resultProps: {
    inherit: PropType<boolean>;
    title: PropType<string>;
    size: PropType<"default" | "small" | "large">;
    type: PropType<"success" | "error" | "warning" | "info" | "primary">;
    icon: PropType<any>;
    iconColor: PropType<string>;
    description: PropType<string>;
    slots: PropType<ResultSlots>;
};
export type ResultProps = ExtractPropTypes<typeof resultProps>;
export type ResultCProps = ConfigurableProps<ExtractPropTypes<typeof resultProps>>;
