import { ITheme } from 'survey-core'; import { IDocStyle } from './types'; import { IDocLayout } from '../layouts/types'; export declare function createStyleFromTheme(theme: ITheme, layout: IDocLayout, callback: (options: { getColorVariable: (varName: string) => string; getSizeVariable: (varName: string) => number; }) => T): T; export declare function getDefaultStyle(theme: ITheme, layout: IDocLayout): IDocStyle;