import { type AspectsDef } from '../model/AspectsProps'; import { type LinkProps } from '../model/LinkProps'; import { type IconProps } from '../model/Picture'; /** * @title Представительства за рубежом * @required ["text", "href"] */ export declare type ForeignOfficeProps = LinkProps & IconProps; /** * @title Филиалы */ export declare type BranchesHeader = { /** @title Филиал по-умолчанию */ default?: string; /** @title Отображать выбор филиалов */ visible?: boolean; /** @title Дополнительные атрибуты для слика по региону*/ dataClick?: AspectsDef[]; /** @title Дополнительные атрибуты для выбора региона*/ dataSelect?: AspectsDef[]; }; export interface HeaderData { foreignOffices?: ForeignOfficeProps[]; branches?: BranchesHeader; officesAtms?: LinkProps; }