import { PrismaBase } from './base'; import { Comfortable } from './comfortable'; import { Compact } from './compact'; import { Dark } from './dark'; import { Light } from './light'; import { Base } from '../design-tokens/base'; import { ColorScheme, Density } from '../types'; type MutablePrisma = Base & PrismaBase & (Light | Dark) & (Comfortable | Compact); type Prisma = Readonly; declare function createPrismaTheme({ colorScheme, density, }: { colorScheme: ColorScheme; density: Density; }): Prisma; export default createPrismaTheme; export { Prisma };