/**
 * Congratulation!
 * You find a poop project
 */
declare const poopArt: () => void;
declare const poopArtWithMessage: (message?: string) => void;
declare const poopArtColors: {
    brown: string;
    green: string;
    rainbow: string;
};
declare const poopArtCustom: (color?: keyof typeof poopArtColors) => void;
export { poopArtWithMessage, poopArtCustom };
export default poopArt;
//# sourceMappingURL=index.d.ts.map