import type { StepHandler } from '.'; /** * @inheritDoc resetData * @example * * * { * "step": "resetData" * } * */ export interface ResetDataStep { step: 'resetData'; /** * Content types to remove. When omitted, all posts, pages, custom post * types, and comments are removed. */ contentTypes?: Array<'posts' | 'pages' | 'comments'>; } /** * Deletes the selected WordPress content through WordPress APIs so dependent * records are removed with it. Empty tables have their sequences reset so * later imports receive the identifiers they would on a site without the * removed content. * * @param playground Playground client. */ export declare const resetData: StepHandler;