import * as React from 'react'; import type { HTMLAttributesWithRootRef } from '../../types'; export interface PanelHeaderContentProps extends HTMLAttributesWithRootRef { /** * Компонент отображаемый после содержимого. */ aside?: React.ReactNode; /** * Компонент отображаемый до содержимого. */ before?: React.ReactNode; /** * Подпись под основным текстом. */ subtitle?: React.ReactNode; } /** * @see https://vkui.io/components/panel-header#panel-header-content */ export declare const PanelHeaderContent: ({ aside, subtitle, before, children, onClick, ...restProps }: PanelHeaderContentProps) => React.ReactNode; //# sourceMappingURL=PanelHeaderContent.d.ts.map