import * as React from 'react'; export interface AsideProps extends React.HTMLAttributes { [x: string]: unknown; ref?: React.Ref; shouldRender?: boolean; } export interface AsideRefCurrent { wrapper: HTMLElement | null; } export declare const Aside: React.FC;