import { Action, ParamsFrom } from "./../index";
export declare class CreateChatRoom extends Action {
    name: string;
    description: string;
    inputs: {
        name: {
            required: true;
        };
    };
    run({ params }: {
        params: ParamsFrom<CreateChatRoom>;
    }): Promise<{
        name: string;
        didCreate: boolean;
    }>;
}
