import { ResultProps } from "antd"; import { FC, ReactNode } from "react"; export interface IBulletCardProps extends ResultProps { /** * Title of the bullet card; uses translation. */ title: string; /** * Number of bullets. */ count: number; /** * Optional icon (used in Result under the hood). */ icon: boolean | ReactNode; bullet?: () => ReactNode; } /** * Simple bullet card using "Result" component from Antd * * Props: * * - **title** goes through translator * - **count** is the number of bullets * - **icon** an icon to the Result component * * See: * * - https://ant.design/components/result/ */ export declare const BulletCard: FC;