import { JSXElementConstructor, ReactElement } from "react";
import { Scope } from "react-runner";
import { Theme, Language } from "react-live-runner";
export declare type Options = {
    disable?: boolean;
    scope?: Scope;
    wrapper?: JSXElementConstructor<{
        children: ReactElement;
    }>;
    theme?: Theme;
    language?: Language;
    readOnly?: boolean;
};
export declare type StorySource = {
    source: string;
};
