import React from 'react'; type frameworkProps = { framework: 'jest' | 'pytest' | 'vitest'; configPath?: string; path?: string; pdpUrl?: string; }; export declare function CodeSampleComponent({ framework, configPath, path, pdpUrl, }: frameworkProps): React.JSX.Element; export {};