import { Palette } from './create-palette'; import { Typography } from './create-typography'; import { Attributes } from './create-attributes'; export interface Theme { palette?: Palette; typography?: Typography; attributes?: Attributes; } declare const _default: { palette: Palette | undefined; typography: Typography | undefined; attributes: Attributes | undefined; }; export default _default; export * from './global-styles';