/**
 * Given a theme, extract the things we need for the theme builder.
 */
export declare function extractTheme(config: Record<string, string>): {
    colors: Record<string, string>;
    borderRadius: Record<string, string>;
    boxShadow: Record<string, string>;
    spacing: Record<string, string>;
    fontFamily: Record<string, string>;
    fontSize: Record<string, string>;
    fontWeight: Record<string, string>;
};
