import type { StepHandler } from '.'; /** * @inheritDoc importThemeStarterContent * @example * * * { * "step": "importThemeStarterContent" * } * */ export interface ImportThemeStarterContentStep { /** The step identifier. */ step: 'importThemeStarterContent'; /** * The name of the theme to import content from. */ themeSlug?: string; } /** * Imports a theme Starter Content into WordPress. * * @param playground Playground client. */ export declare const importThemeStarterContent: StepHandler;