import { SlotRecipeRuntimeFn, SlotRecipeVariantRecord } from '../styled-system/types'; export type SlotMeta = readonly [slot: string, description: string]; type ExtractSlotNames = T[number][0]; export type SlotNames = ExtractSlotNames; export type SvaRecipeWithMeta = SlotRecipeRuntimeFn> & { readonly SCOPE: string; readonly DESCRIPTION: string; readonly SLOTS: readonly SlotMeta[]; }; export {};