import { Component, JSXElement } from 'solid-js';
export interface CalloutProps {
    title?: string;
    description: string;
    actions?: JSXElement[];
    small?: boolean;
}
export declare const Callout: Component<CalloutProps>;
