import { BackstageTypography, PageTheme, PageThemeSelector } from './types'; /** * Default Typography settings. * * @public */ export declare const defaultTypography: BackstageTypography; /** * Options for {@link createBaseThemeOptions}. * * @public */ export interface BaseThemeOptionsInput { palette: PaletteOptions; defaultPageTheme?: string; pageTheme?: Record; fontFamily?: string; htmlFontSize?: number; typography?: BackstageTypography; } /** * A helper for creating theme options. * * @public */ export declare function createBaseThemeOptions(options: BaseThemeOptionsInput): { palette: PaletteOptions; typography: BackstageTypography; page: PageTheme; getPageTheme: ({ themeId }: PageThemeSelector) => PageTheme; };