import { FunctionalComponent } from 'vue';

interface PlaygroundProps {
    /**
     * Playground title
     *
     * 演示标题
     */
    title?: string;
    /**
     * Playground link
     *
     * 演示链接
     */
    link: string;
}
declare const Playground: FunctionalComponent<PlaygroundProps>;

export { Playground as default };
export type { PlaygroundProps };
