import { type IPreviewerProps } from 'dumi';
import { type FC, type ReactNode } from 'react';
export interface PreviewerActionsProps extends IPreviewerProps {
    demoContainer: HTMLDivElement | HTMLIFrameElement;
    /**
     * disabled actions
     */
    disabledActions?: ('CSB' | 'STACKBLITZ' | 'EXTERNAL' | 'HTML2SKETCH')[];
    extra?: ReactNode;
    forceShowCode?: boolean;
}
declare const PreviewerActions: FC<PreviewerActionsProps>;
export default PreviewerActions;
