import { Preset } from '@pandacss/types'; interface PresetOptions { /** * @default 'neutral' */ accentColor?: AccentColor; /** * @default 'neutral' */ grayColor?: GrayColor; /** * @default 'sm' */ borderRadius?: BorderRadius; } type BorderRadius = (typeof borderRadii)[number]; declare const borderRadii: readonly ["none", "xs", "sm", "md", "lg", "xl", "2xl"]; type AccentColor = (typeof accentColors)[number]; declare const accentColors: readonly ["neutral", "tomato", "red", "ruby", "crimson", "pink", "plum", "purple", "violet", "iris", "indigo", "blue", "cyan", "teal", "jade", "green", "grass", "bronze", "gold", "brown", "orange", "amber", "yellow", "lime", "mint", "sky"]; type GrayColor = (typeof grayColors)[number]; declare const grayColors: readonly ["neutral", "mauve", "olive", "sage", "sand", "slate"]; declare const createPreset: (options?: PresetOptions) => Preset; export { AccentColor, BorderRadius, GrayColor, PresetOptions, accentColors, borderRadii, createPreset, createPreset as default, grayColors };