import { ITheme } from 'survey-core';
import { IDocStyle } from './types';
import { IDocLayout } from '../layouts/types';
export declare function createStyleFromTheme<T>(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;
