/// interface FontIconsProps { family?: string; } declare const FontIcons: { ({ family }: FontIconsProps): JSX.Element; defaultProps: { family: string; }; }; export default FontIcons;