export type Counts = {
    characters: number;
    whiteSpace: number;
    punctuation: number;
};
/**
 *
 * @param {string} text - text to count characters in
 */
export declare function countCharacters(text: string): Counts;
