/// <reference types="react" />
import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export interface HeroProps extends StyleProps, React.PropsWithChildren<any>, IdProps {
    variant?: 'flower' | 'dash';
}
export declare const Hero: ({ id, style, children, className, variant }: HeroProps) => import("react/jsx-runtime").JSX.Element;
