import { Theme } from '../types'; /** * Base (wireFrame-like) color scheme * * The base color scheme uses a popular design system to * dynamically generate all color tokens from the HTML color: * "gray" - #808080 - rgb(128,128,128) - This is available in the * theme colors object as primarySource. * * We are also using this file as a test fixture to make sure * the generateColors function works perfectly. */ export declare const colors: Partial; export declare const spacing: Theme['spacing']; declare const _default: { colors: Partial; spacing: import("../types").Spacing; }; export default _default;