import { RenderResult } from '@testing-library/react'; import { CodeProps } from '../Code/Code.types'; import { PanelProps } from '../Panel/Panel.types'; import type { TestUtilsReturnType } from './getTestUtils.types'; export declare const languageOptions: ({ displayName: string; language: "javascript"; } | { displayName: string; language: "python"; } | { displayName: string; language: "shell"; })[]; export declare const renderCode: (props?: Partial) => RenderResult & TestUtilsReturnType; export declare const renderCodeWithLanguageSwitcher: ({ props, isLoading, }: { props?: Partial; isLoading?: boolean; }) => RenderResult & TestUtilsReturnType; export declare const renderMultipleCodes: () => RenderResult; //# sourceMappingURL=Code.testutils.d.ts.map