import { Shape } from './shape';
import { Strategy } from './strategy';
export interface Theme {
    themeName: string;
    shape: Shape;
    strategy: Strategy;
}
export declare const themeMap: Record<string, Theme>;
export declare const themes: Theme[];
