import React from 'react';
import { CSSProperties } from 'react';
import { ButtonProps } from '@mantine/core';
type IconComponent = React.ComponentType<React.SVGProps<SVGSVGElement>>;
export type ResultProps = {
    icon?: IconComponent;
    title?: string;
    description?: string;
    button?: string;
    buttonProps?: Omit<ButtonProps, 'children'> & {
        onClick?: () => void;
    };
    style?: CSSProperties;
    className?: string;
};
export declare function Result(props: ResultProps): React.JSX.Element;
export {};
