import type { ReactNode } from 'react'; export type PageAsideBlockProps = { children: ReactNode; /** * Название класса, применяется к корневому компоненту */ className?: string; /** * Вариант разделения блоков с помощью divider */ dividerVariant?: 'fullWidth' | 'content'; }; export declare const PageAsideBlock: ({ children, className, dividerVariant, }: PageAsideBlockProps) => JSX.Element;