/**
 * Transforms data into a stem and leaf plot.
 * @param data The data to show in the plot
 * @returns A string containing the plot
 */
declare const stemleafplot: (data: number[]) => string;
export default stemleafplot;
