import React from 'react';
type PropsStackLabels = {
    itemTopics: string;
    className?: string;
    style?: React.CSSProperties;
};
/**
 * 🧩  StackLabels Component
 * - `Add labels` representing the stacks/technologies used in your repositories.
 *                                 ⚠️ Set the labels in GitHub at:
 *                                 Repository → About '⚙️' → Topics → add your stackName.
 *
 * @see {@link https://github.com/DIGOARTHUR/github-automated-repos} ⬅ check the available stack names here. (GitHub Topics)
 * @example
 *    {repo.topics.map((stackName) => (
 *           <span key={stackName} style={{ marginRight: '8px', display: 'flex', gap: '0.2rem' }}>
 *             <StackLabels itemTopics={stackName} className="w-20" />
 *           </span>
 *     ))}
 * @param {string} itemTopics - ⚠️ **Mandatory**: e.g: item.topics.map(stackName) ... itemTopics={stackName}
 * @param {string} className - Optional: TailwindCSS CSS Properties.
 * @param {React.CSSProperties} style - Optional: style CSS Properties.
 * @returns {ReactNode} - Return tag `<img>`.
 */
export declare const StackLabels: ({ itemTopics, className, style }: PropsStackLabels) => JSX.Element | null;
export {};
