import { ColorsType } from '../validation/colors.schema.js'; import 'zod'; type color = `#${string}`; declare const createColors: (background: color, grid: color, inactive: color) => { background: string; grid: string; inactive: string; }; declare const validateColors: (entry: unknown) => ColorsType; export { createColors, validateColors };