import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { callMethod?: (name: string) => void; resolveColor?: (value: string) => string | null; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type PreviewFrameProps = typeof __propDef.props; export type PreviewFrameEvents = typeof __propDef.events; export type PreviewFrameSlots = typeof __propDef.slots; export default class PreviewFrame extends SvelteComponentTyped { get callMethod(): (name: string) => void; get resolveColor(): (value: string) => string | null; } export {};