import type { appConfig } from '../config'; import type { Colors } from '../preset'; import type { DeepPartial } from '.'; export interface PluginOptions { appConfig: DeepPartial; } export interface ResolvedPluginOptions { appConfig: typeof appConfig; } export type Color = keyof Colors; export type Size = '2xs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';