import { ReactNode } from 'react';
import { ThemeColor } from './theme.js';
type BlockQuoteProps = {
    title: string;
    children?: ReactNode;
    color?: ThemeColor;
};
export declare const Aside: ({ title, children, color, ...props }: BlockQuoteProps) => JSX.Element;
export {};
