import React from "react";
import { ITeaserProps, TeaserRegion } from "@talkfurther/elements";
declare module "react" {
    namespace JSX {
        interface IntrinsicElements {
            "further-teaser": any;
        }
    }
}
interface TeaserComponentProps extends ITeaserProps {
    region?: TeaserRegion;
}
interface TeaserComponentState {
    isClient: boolean;
}
export declare class Teaser extends React.Component<TeaserComponentProps, TeaserComponentState> {
    constructor(props: TeaserComponentProps);
    componentDidMount(): void;
    render(): React.JSX.Element;
}
export default Teaser;
