import { colors } from './colors'; import { layout } from './layout'; export const theme = { colors, layout }; declare module '@emotion/react' { export interface Theme { colors: typeof colors; layout: typeof layout; } } export type Theme = typeof theme;