import { SfdxCommand } from '@salesforce/command';
import { CommunityTemplatesListResponse } from '../../../../lib/community/defs/CommunityTemplatesListResponse';
/**
 * A command to fetch available community templates a community. This is just an sfdx wrapper around
 * the get available community templates connect endpoint
 */
export declare class CommunityListTemplatesCommand extends SfdxCommand {
    static readonly requiresUsername = true;
    static readonly help: string;
    static readonly description: string;
    static readonly longDescription: string;
    run(): Promise<CommunityTemplatesListResponse | Error>;
}
