import { DeepPartial } from './util/utility-types.ts';
import { Options as RevealOptions } from 'reveal.js';

export type Options = {
    bg: string;
    textFill: string;
    pathStroke: string;
    rectFill: string;
    rectStroke: string;
};
export declare const defaultOptions: Options;
export type AugmentedRevealOptions = RevealOptions & {
    railroad?: DeepPartial<Options>;
};
