import type { PositiveNumber } from '../_types/global';
export declare function truncate<N extends number>(str: string, length: PositiveNumber<N>, ellipsis?: string): string;
