export type NextGeneratioNEUVariants = "filled" | "outline" | "color";
export type NextGenerationEUColors = "light" | "dark" | "pantone";
export interface FundedByNextGenerationEUPropsProps {
    /** Provides a human-readable title for the element that contains it. */
    title?: string;
    /** Width of the component. Height is set automatically. */
    size?: number;
    /** The variant to use. If the color variant is set,
     * the color property is ignored. */
    variant?: NextGeneratioNEUVariants;
    /** The color of the component. */
    color?: NextGenerationEUColors;
}
export declare const FundedByNextGenerationEU: ({ title, size, color, variant, }: FundedByNextGenerationEUPropsProps) => JSX.Element;
