import { FC, ReactNode } from "react"; export type LabeledIconProps = { labelOnly?: boolean; Icon?: ReactNode; rightText?: string; leftText?: string; className?: string; }; declare const LabeledIcon: FC; export default LabeledIcon;