/** * A collection of CSS styles and default parameter values that can be added to * a theme. Parts are created with the createPart helper function. */ export type Part = { readonly feature?: string; readonly modeParams: Record; readonly css?: string | (() => string); };