import React from 'react'; import { TwitterEditorTheme } from '../twitter-theme'; export interface CharacterCountIndicatorProps { /** An object describing the total characters and characters remaining */ characters?: { total: number; used: number; }; size?: number; strokeWidth?: number; /** The number of characters remaining at which to display a warning */ warningThreshold?: number; theme: TwitterEditorTheme; } export declare const CharacterCountIndicator: React.FunctionComponent, "theme">>; //# sourceMappingURL=character-count.d.ts.map