import { Schema } from '@sprucelabs/schema';
import { FeatureAction } from '../features/features.types';
import { GraphicsInterface } from '../types/cli.types';
declare const uiUtil: {
    renderActionMastHead(ui: GraphicsInterface, action: FeatureAction<Schema>): void;
    renderMasthead(options: {
        ui: GraphicsInterface;
        hero?: string;
        headline: string;
    }): void;
};
export default uiUtil;
