import React from 'react'; export interface AsideProps { children: React.ReactNode; isSticky?: boolean; topSpace?: '8' | '12' | '16' | '20' | '24'; } export declare const Aside: ({ children, isSticky, topSpace }: AsideProps) => JSX.Element;