interface Props { height?: string; width?: string; codePenId?: string; tabs?: string[] | 'js' | 'css' | 'scss' | 'less' | 'result'; clickToLoad?: boolean; editable?: boolean; theme?: string | 'light' | 'dark' | 'default'; disable_observer?: boolean; iframe_styles?: string; } declare const CodePen: import("svelte").Component; type CodePen = ReturnType; export default CodePen;