import { FC } from 'react';
import { Language } from 'prism-react-renderer';
export type ExampleProps = {
    live?: boolean;
    code?: string;
    expanded?: boolean;
    className?: string;
    language?: Language;
    scope?: Record<string, unknown>;
    isDarkTheme?: boolean;
    storyId?: string;
};
export declare const Example: FC<ExampleProps & {
    example?: number;
}>;
