import type { StepHandler } from '.'; /** * @inheritDoc enableMultisite * @hasRunnableExample * @example * * * { * "step": "enableMultisite" * } * */ export interface EnableMultisiteStep { step: 'enableMultisite'; /** wp-cli.phar path */ wpCliPath?: string; } /** * Defines the [Multisite](https://developer.wordpress.org/advanced-administration/multisite/create-network/) constants in a `wp-config.php` file. * * This step can be called multiple times, and the constants will be merged. * * @param playground The playground client. * @param enableMultisite */ export declare const enableMultisite: StepHandler;