import { ReactText } from 'react';
export interface IDisplayCardProps {
    /**
     * Width property for Background Image component
     */
    imageWidth?: string;
    /**
     * Height property for Background Image component
     */
    imageHeight?: string;
    /**
     * Url for Background Image component
     */
    imageUrl: string;
    /**
     * Heading Text for H1 component
     */
    headingTextH1: ReactText;
    /**
     * Heading Text for H5 component
     */
    headingTextH5: ReactText;
    /**
     * Background Color for Button component
     */
    buttonBackgroundColor?: string;
    /**
     * Font Family property for Button Text component
     */
    fontFamilyButton: string;
    /**
     * Font Size property for Button Text component
     */
    fontSizeButton?: string;
    /**
     * Text Transfrom property for Button Text component
     */
    textTransformButton?: string;
    /**
     * Color property for Button Text component
     */
    colorButtonText?: string;
    /**
     * Text for Button Text component
     */
    textButton: ReactText;
}
