import { ElementType } from "react";

//#region src/awesome/Hero/type.d.ts
interface HeroAction {
  github?: boolean;
  link: string;
  openExternal?: boolean;
  text: string;
  type?: 'primary' | 'default';
}
interface HeroProps {
  actions?: HeroAction[];
  description?: string;
  Link?: ElementType;
  title?: string;
}
//#endregion
export { HeroAction, HeroProps };
//# sourceMappingURL=type.d.mts.map