import React from 'react'; import '../g.scss'; declare function Icons(props: IIcons): React.JSX.Element; export default Icons; export interface IIcons { fontLine?: IFontLine[]; alignmentList?: IFontLine[]; size?: string; change?: Function; wrapStyle?: React.CSSProperties; value?: IFontAlign; } export interface IFontLine { key: string; icon: string; title: string; } export interface IFontAlign { align?: string; bold?: string; underLine?: string; deleteLine?: string; }