import { DefaultTheme } from 'styled-components'; import { colors, PalletModel, PalletsType, ThemePatternPallet } from './pallets'; import { properties } from './properties'; export * from './pallets'; declare module 'styled-components' { interface DefaultTheme { pallet: ThemePatternPallet; currentPallet: PalletModel; colors: typeof colors; properties: typeof properties; changePallet: (pallet: PalletsType) => PalletModel; } } interface GlobalStyleProps { readonly theme: PalletModel; } export declare const GlobalStyle: import("styled-components").GlobalStyleComponent; export declare const theme: DefaultTheme; //# sourceMappingURL=index.d.ts.map