import { extractSupportProps } from '@cloud-ru/ds-utils'; import cn from 'classnames'; import { Headline } from '../Headline'; import { PageSidebar } from '../PageSidebar'; import { usePageHeight } from './hooks'; import styles from './styles.module.scss'; import { DesktopPageServicesProps } from './types'; export function DesktopPageServices({ children, title, actions, className, sidebar, slotBeforeTitle, subtitle, slotAfterTitle, truncateTitle, autoHeight, limitContentMaxWidth, ...rest }: DesktopPageServicesProps) { const height = usePageHeight(autoHeight); return (