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