// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; export interface IIAPopupProps { headline?: string; headlineColor?: string; headlineSize?: number; headlineWidth?: string; backgroundImage?: string; content: JSX.Element; closeButtonColor?: string; closeButtonBackground?: string; contentOverflow?: "visible" | "hidden" | "clip" | "scroll" | "auto"; styles?: React.CSSProperties; zIndex?: number; fontSlots?: IFontSlots; close?: () => void; } export class IAPopup extends React.Component { constructor(props: IIAPopupProps); render(): JSX.Element; } export interface IFontSlots { title: { fontFamily: string; }; heading: { fontFamily: string; }; body: { fontFamily: string; }; label: { fontFamily: string; }; }