import React from 'react'; import { ForwardRefWithStaticComponents } from '@asuikit/utils'; import { HorizontalSectionSharedProps } from '../HorizontalSection/HorizontalSection'; import { Section } from '../HorizontalSection/Section/Section'; export interface AsideProps extends HorizontalSectionSharedProps, React.ComponentPropsWithRef<'nav'> { /** Aside content */ children: React.ReactNode; } type AsideComponent = ForwardRefWithStaticComponents; export declare const Aside: AsideComponent; export {}; //# sourceMappingURL=Aside.d.ts.map