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