import type { PyConfigTag } from "./py-config.types"; /** * Py config. * @type {PyConfigTag} * @returns {JSX.Element} * @param {string | (Record & PyConfigSharedJsonProperties)} properties.children - py-config content * @param {string} properties.source - Path to Python config-file. * @param {"toml" | "json"} properties.type - Type of Python config (TOML or json, default TOML). * @param {PyConfigSplashscreen} properties.splashscreen - This is one of the core plugins in PyScript, which is active by default. The splashscreen is the first thing you see when you open a page with Pyscript while it is loading itself and all the necessary resources. * @param {PyConfigInterpreters} properties.interpreters - ? * @param {PyConfigFetch} properties.fetch - ? * @param {string[] | Set} properties.packages - List of needed Python packages. * @param {string[] | Set} properties.plugins - Pyscript plugins * @see {@link https://docs.pyscript.net/latest/reference/elements/py-config.html} Original py-config element documentation. * @see {@link https://pyscript-react.github.io/} Pyscript-react element documentation. */ declare const PyConfig: PyConfigTag; export default PyConfig;