import { JSX } from 'react/jsx-runtime'; import * as React from "react"; declare const HERO_STYLES: { primary: string; success: string; info: string; warning: string; danger: string; default: string; }; export type HeroType = keyof typeof HERO_STYLES; export interface HeroProps { type?: HeroType; children: React.ReactNode; className?: string; } export declare function Hero(props: HeroProps): JSX.Element; export {}; //# sourceMappingURL=Hero.d.ts.map