7 lines
285 B
TypeScript
7 lines
285 B
TypeScript
|
import type { Theme } from '../../_mixins';
|
||
|
export declare const self: () => {};
|
||
|
export type EquationThemeVars = ReturnType<typeof self>;
|
||
|
declare const equationLight: Theme<'Equation', EquationThemeVars>;
|
||
|
export default equationLight;
|
||
|
export type EquationTheme = typeof equationLight;
|