import { PersonContact } from './_types'; import { ElementModel } from '../../_types'; interface Theme { isThemeDark?: boolean; } interface PersonText extends Theme { name: HTMLElement | null; slotOne?: HTMLElement | null; slotFour?: HTMLElement | null; } interface PersonInfo extends PersonContact, Theme { image?: HTMLImageElement | null; association?: HTMLElement | null; pronouns?: HTMLElement | null; } interface PersonHero extends PersonText, PersonInfo { breadcrumbMobile?: HTMLElement | null; breadcrumbDesktop?: HTMLElement | null; } export declare const createCompositePersonHero: (props: PersonHero) => ElementModel; export {}; //# sourceMappingURL=hero.d.ts.map