export declare class ImageText { /** The title at the top of the text */ heading: string; /** This turns the component into a card, rather than just an image/text layout */ card: boolean; /** The paragraph text */ text: string; /** The image link (get from Cloudinary) */ image: string; /** Provide a set % width for the image. Takes a number without the % sign*/ imagewidth: string; /** Switch the side the image is on.*/ switch: boolean; /** Applies to MOBILE / TABLET <780px screens only. Paragraph and heading sizes reduced*/ smalltext: boolean; /** Choose the colour for the paragraph text*/ textcolour: string; /** Set the margin for the card*/ margin: string; /** The primary image focus area. standard CSS object-position values to set a focus area on the image. EG 'center left' */ focusarea: string; /** Animate the image (scale in) on scroll*/ imagezoom: boolean; /** When the image and content stack, reverse the order so the image is on top*/ reversestack: boolean; /** Applies to mobilescreen displays only. Will hide the image and display content only */ hideimage: boolean; mobilescreen: boolean; mediaquery: any; componentWillLoad(): void; checkForMobileScreen(e: any): void; render(): any; }