import type { Snippet } from 'svelte';
interface Props {
    children?: Snippet;
    attributes?: Record<string, any>;
}
declare const Iframe: import("svelte").Component<Props, {}, "">;
type Iframe = ReturnType<typeof Iframe>;
export default Iframe;
