import type { Theme } from "../.."; declare function printHeaderFileInfo(themeName: string): string; declare function parseCustomMedia(customMedia: { [key: string]: string; }): string; declare function parseThemePrimitives(theme: Theme.BaseTheme, parentSelector?: string): string; declare function parseRootPrimitives(global: Theme.BaseTheme): string; declare function getUnexportedThemes(themePath: string, themes: Array, global: Theme.GlobalTheme): string[]; export { getUnexportedThemes, parseCustomMedia, parseRootPrimitives, parseThemePrimitives, printHeaderFileInfo, };