import { StormWorkspaceConfig } from '@storm-software/config';

/**
 * Get a banner header to display at the top of a file
 *
 * @param name - The name to use in the display
 * @param workspaceConfig - The workspace config to use for additional information
 * @returns The banner header
 */
declare const getFileBanner: (name?: string, workspaceConfig?: StormWorkspaceConfig) => string;

export { getFileBanner };
