import { ColorScheme } from '../types'; declare function createPrismaBase({ colorScheme }: { colorScheme: ColorScheme; }): { linkColor: string; hoverShadow: string; draggableBackground: string; zindexLayer: number; zindexFixedNavbar: number; zindexModalBackdrop: number; zindexModal: number; zindexPopover: number; zindexToastMessages: number; borderColor: string; borderColorWeak: string; borderColorStrong: string; focusShadow: string; focusShadowInset: string; focusColor: string; lineLength: string; lineLengthMinimum: string; lineHeight: string; lineHeightSingle: string; lineHeightTight: string; lineHeightSnug: string; lineHeightComfortable: string; lineHeightRelaxed: string; lineHeightSpacious: string; lineHeightNormal: string; fontSizeSmall: string; fontSize: string; fontSizeLarge: string; fontSizeXLarge: string; fontSizeXXLarge: string; fontWeightLight: number; fontWeightNormal: number; fontWeightSemiBold: number; fontWeightBold: number; fontWeightHeavy: number; fontWeightExtraBold: number; fontFamily: string; fontFamilyTitle: string; sansFontFamily: string; serifFontFamily: string; monoFontFamily: string; }; type PrismaBase = ReturnType; export default createPrismaBase; export { PrismaBase };