/**
 * SFDX command output when creating a community
 */
export declare type CommunityCreateResponse = {
    /**
     * output message
     */
    message: string;
    /**
     * name of the community
     */
    name: string;
    /**
     * the next actions that user can do to check, if community is created or not.
     */
    action: string;
};
