export declare type errOptions = {
    function?: string;
    title?: string;
    tip?: string;
};
export declare class SimplyError extends Error {
    /**
     * Emit errors and provide sufficient details to help users debug easily
     * @param {String} function
     * @param {String} title
     * @param {String} tip
     */
    constructor(options?: errOptions);
}
