import { Theme } from '../../types/emotion/Theme';
/**
 * Helper for creating custom theme. Makes deep merge of tokens and theme settings.
 */
export declare const createTheme: ({ tokens, settings }?: {
    tokens?: any;
    settings?: Theme;
}) => Theme;
