import { IFormatter } from './_types'; /** Formats strings */ export default class StringFormatter implements IFormatter { format(subject: string, format?: string): string; }