UNPKG

@adobe/aem-core-components-react-base

Version:
22 lines 689 B
/// <reference types="react" /> import { RoutedCoreComponentModel, RoutedModel } from "../../../routing/RoutedCoreComponent"; export interface TeaserV1Action extends RoutedModel { title: string; URL: string; } export interface TeaserV1Model extends RoutedCoreComponentModel { pretitle?: string; title: string; description?: string; titleType: string; linkURL: string; actionsEnabled: boolean; imageLinkHidden: boolean; imageAlt: string; titleLinkHidden: boolean; actions: TeaserV1Action[]; imagePath: string; } declare const TeaserV1: (props: TeaserV1Model) => JSX.Element; export default TeaserV1; //# sourceMappingURL=TeaserV1.d.ts.map