import './MyLabel.css';
export interface Props {
    /**
     * Text to display
     */
    label: string;
    /**
     * Label size
     */
    size?: 'normal' | 'h1' | 'h2' | 'h3';
    /**
     * All caps - Todas las letras mayusculas
     */
    allCaps?: boolean;
    /**
     * Colores del texto
     */
    color?: 'text-primary' | 'text-secondary' | 'text-tertiary';
    /**
     * Color del texto del span
     */
    fontColor?: string;
    /**
     * Color de fondo
     */
    backgroundColor?: string;
}
export declare const MyLabel: ({ label, fontColor, allCaps, color, size, backgroundColor }: Props) => import("react/jsx-runtime").JSX.Element;
