export interface TruncationOptions {
    stringValue: string;
    charLength?: number;
    showMore?: boolean;
    classes?: string;
}
export interface TruncationModel {
    fullHtml: string;
    truncatedHtml: string;
    showMore: boolean;
    isTruncated: boolean;
    classes?: string | undefined;
}
export declare const initialiseTruncation: ({ stringValue, charLength, showMore, classes, }: TruncationOptions) => TruncationModel;
export declare const renderTruncateAsHtml: (options: TruncationOptions) => string;
