export declare function splitString({ str, charactersPerRow, showCoordinates, currRemainder, spacingInterval, }: {
    str: string;
    charactersPerRow: number;
    showCoordinates: boolean;
    currRemainder?: number;
    spacingInterval?: number;
}): {
    segments: any[];
    remainder: number;
};
