import { TwoToneColor } from "@ant-design/icons"; import { FC } from "react"; export interface IBoolInlineProps { bool?: boolean | null; trueColor?: TwoToneColor; falseColor?: TwoToneColor; unknownColor?: TwoToneColor; } export declare const BoolInline: FC;