export declare class Slugify {
    /**
     * Convert string to proper hashtag
     * @returns {string}
     * @param string
     * @param options
     */
    static apply(string: any, options?: any): string;
}
