import * as React from 'react'; import type { HasComponent, HasRootRef } from '../../types'; export interface RootComponentProps extends React.AllHTMLAttributes, HasRootRef, HasComponent { /** * @deprecated Since 7.3.0. * * Свойство устарело и будет удалено в `v8`, используйте свойство `className`. */ baseClassName?: string | false; /** * @deprecated Since 7.3.0. * * Свойство устарело и будет удалено в `v8`, используйте свойство `style`. */ baseStyle?: React.CSSProperties; } /** * Базовый корневой компонент. */ export declare const RootComponent: ({ Component, baseClassName, className, baseStyle, style, getRootRef, ...restProps }: RootComponentProps) => React.ReactNode; //# sourceMappingURL=RootComponent.d.ts.map