import { Account } from './Account';
import { IMNSTopic } from './Interfaces';
import { MNS } from './MNS';
import { Region } from './Region';
export declare class MNSTopic extends MNS implements IMNSTopic {
    constructor(account: Account, region?: string | Region);
    listTopicP(prefix?: string, pageSize?: number, pageMarker?: string): any;
    createTopicP(name: string, options?: any): any;
    deleteTopicP(name: string): any;
    private makeTopicURL;
    private _patternTopic;
    private _urlTopic;
}
