import { type AspectsProps } from '../model/AspectsProps'; import { type TitleProps } from '../model/HeadlineType'; import { type LogoType } from '../model/LogoType'; import { type PlaceholderProps } from '../model/PlaceholderProps'; export declare type SearchHeaderProps = AspectsProps & PlaceholderProps & { ariaLabel: string; }; export interface CommonData extends TitleProps { logo?: LogoType; search?: SearchHeaderProps; dropdownMenuAriaLabel?: string; chatBotAriaLabel?: string; backwardButton?: string; }