import { ButtonWithIconProps } from '../ButtonWithIcon';
export interface GenTeaserButtonProps {
    /** Expects props from ButtonWithIcon (e.g. text, info, etc.) */
    button: ButtonWithIconProps;
}
/**
 * Expand Button
 */
declare const GenTeaserButton: (props: GenTeaserButtonProps) => any;
export default GenTeaserButton;
