import type { GriddoTheme } from "../../types/theme"; /** * Creates theme files for Griddo * * It takes an GriddoTheme object and options with the output directory * and creates the theme files. * * @param input - The theme object containing global and sites themes * @param options - The options object with the output directory * @param options.outputDir - The output directory where the theme files will be created */ declare function createThemes(input: GriddoTheme, options: { outputDir: string; }): void; export { createThemes };