/**
 * SFDX command output when listing available community templates
 */
import { CommunityTemplates } from '../defs/CommunityTemplates';
export declare type CommunityTemplatesListResponse = {
    /**
     * list of templates
     */
    templates: CommunityTemplates[];
    total: number;
};
