import { DeepPartial } from './util/utility-types.ts'; import { RevealOptions } from 'reveal.js'; export type StyleOptions = { copybg: string; copiedbg: string; copycolor: string; copiedcolor: string; copyborder: string; copiedborder: string; scale: number; offset: number; radius: number; }; export type Options = { style: StyleOptions; timeout: number; }; export declare const defaultOptions: Options; export type AugmentedRevealOptions = RevealOptions & { clipcode?: DeepPartial; };