export interface GenTeaserInfoDetailsProps {
    /** The text information related to the details */
    text: string;
    /** The icon to render in the text, defaults to laptop icon. */
    icon?: string;
    /** A link for the text */
    href?: string;
}
/**
 * Info details
 */
declare const GenTeaserInfoDetails: (props: GenTeaserInfoDetailsProps) => any;
export default GenTeaserInfoDetails;
