export declare function length(input: string): number;
export declare function capitalize(input: string): string;
export declare function escapeMarkdown(input: string): string;
declare const index: {
    length: typeof length;
    capitalize: typeof capitalize;
    escapeMarkdown: typeof escapeMarkdown;
};
export default index;
