import { ReactNode } from 'react';
import { onClose } from '../../utils';
export interface FeatureTourPanelContentProps {
    actionArea?: ReactNode;
    children: ReactNode;
    contextualInfo?: ReactNode;
    dismissButtonA11yLabel: string;
    dismissButtonProps?: unknown;
    headerText?: string;
    onClose?: onClose;
    color?: string;
    size: 'md' | 'lg' | 'xl';
}
export declare const FeatureTourPanelContent: ({ actionArea, children, color, contextualInfo, dismissButtonA11yLabel, headerText, onClose, dismissButtonProps, ...props }: FeatureTourPanelContentProps) => JSX.Element;
