type BulletType = "dashes" | "numbers";
type PrintAsBulletsOptions = {
    /**
     * The type of bullet that is displayed
     * @default dashes
     */
    bulletType?: BulletType;
};
/**
 * Prints an array of strings as an indented set
 * of bullet points.
 */
export declare function printAsBullets(strArr: string[], options?: PrintAsBulletsOptions): string;
export {};
