import { ReactText } from 'react';
export interface IHighlightCardProps {
    /**
     * Url property for Background Image component
     */
    imageBackgroundUrl: string;
    /**
     * Width property for Background Image component
     */
    imageBackgroundWidth?: string;
    /**
     * Height property for Background Image component
     */
    imageBackgroundHeight?: string;
    /**
     * Heading property for H2 component
     */
    headingH2: ReactText;
    /**
     * Heading property for H3 component
     */
    headingH3: ReactText;
    /**
     * Background Color property for Button component
     */
    backgroundColorButton?: string;
    /**
     * Font Family property for ButtonText component
     */
    fontFamilyButtonText: string;
    /**
     * Font Size property for Button Text component
     */
    fontSizeButtonText: string;
    /**
     * Text Align property for ButtonText component
     */
    textAlignButtonText?: string;
    /**
     * Text Transform property for ButtonText component
     */
    textTransformButtonText?: string;
    /**
     * Color property for ButtonText component
     */
    colorButtonText?: string;
    /**
     * Heading property for ButtonText component
     */
    headingButtonText: string;
    /**
     * Text property for Button Text component
     */
    buttonText: string;
}
