import { FC } from 'react';
interface InitialsProps {
    initials: string;
    type: string;
    className?: string;
}
/**
 * The Initials component, rendering the passed in initials in a span
 * and throws console warnings in case the initials length is too big for the
 * specified type.
 */
declare const Initials: FC<InitialsProps>;
export default Initials;
