import { HasProps } from "../core/has_props"; import type * as p from "../core/properties"; declare class ThemedAttrs { readonly type: T; readonly attrs: Partial>; readonly defaults: Map; constructor(type: T, attrs: Partial>); } declare class Theme implements p.Theme { readonly attrs: ThemedAttrs[]; constructor(attrs: ThemedAttrs[]); get(obj: HasProps | typeof HasProps, attr: string): unknown | undefined; } export declare const dark_minimal: Theme; export declare const light_minimal: Theme; export declare const caliber: Theme; export declare const contrast: Theme; /** @deprecated */ export declare const constrast: Theme; export declare const night_sky: Theme; export {}; //# sourceMappingURL=themes.d.ts.map