import type { StrapiCommand } from '../../types';
interface CmdOptions {
    email?: string;
}
/**
 * Delete an admin user
 */
declare const action: (cmdOptions?: CmdOptions) => Promise<void>;
/**
 * `$ strapi admin:delete-user`
 */
declare const command: StrapiCommand;
export { action, command };
//# sourceMappingURL=delete-user.d.ts.map