// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; export interface IFontStyleProps { label: string; fontWeight: string; fontStyle?: string; selectedColor: string; align?: string; fontSize?: number; styles?: any; setFontWeight?: (type: string) => void; setFontStyle?: (style: string) => void; setFontAlign?: (align: string) => void; setFontSize?: (size: number) => void; } export interface IFontStyleState { } export class IAFontStyle extends React.Component { constructor(props: IFontStyleProps); render(): JSX.Element; }