/**
 * Get a banner header to display at the top of a file
 *
 * @param name - The name to use in the display
 * @param commentStart - The comment starting token
 * @returns The banner header
 */
declare const getFileBanner: (name: string, commentStart?: string) => string;

export { getFileBanner };
