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