import type { ComponentProps, ElementType } from 'react'; import type { ButtonProps } from '../Button'; export type Organization = { /** * Идентификатор организации */ id: string; /** * Название организации */ name: string; /** * ИНН организации */ inn: string; /** * КПП организации */ kpp?: string; }; export type LinkButtonProps = Omit, 'children' | 'variant' | 'size' | 'color' | 'key' | 'loadingIndicator' | 'loadingPosition' | 'component'> & { name?: string; } & Omit, ''>;