import { type JSONRefObject } from '../../data/JSONRefObject'; import { type AspectsProps } from '../../model/AspectsProps'; import { type TitleProps } from '../../model/HeadlineType'; import { type SubmitButtonProps } from '../ApplicationForm/ApplicationFormContent'; declare type RegionGrand = { /** @hidden */ regions?: { name: string; href: string; }[]; }; /** * @title Грантовая поддержка */ export declare type GrantSupportContent = TitleProps & AspectsProps & { button?: SubmitButtonProps; /** @title Список регионов */ regionSource?: RegionGrand & JSONRefObject; }; export {};