import { SDRunProps, SDParagraphProps, SDTableProps, SDThemeColorName } from './sd-props.js'; export interface SDStyleBase { name?: string; basedOn?: string; next?: string; linked?: string; props?: TProps; } export type SDParagraphStyleDef = SDStyleBase; export type SDCharacterStyleDef = SDStyleBase; export type SDTableStyleDef = SDStyleBase; export interface SDStyles { paragraph?: Record; character?: Record; table?: Record; } export interface SDTheme { colorScheme: Record; fontScheme?: { major?: { latin?: string; eastAsia?: string; complexScript?: string; }; minor?: { latin?: string; eastAsia?: string; complexScript?: string; }; }; } export interface SDDocDefaults { run?: SDRunProps; paragraph?: SDParagraphProps; table?: SDTableProps; } //# sourceMappingURL=sd-styles.d.ts.map