interface IdOption {
    id?: string;
}
interface AmpifyOptions {
    analytics?: IdOption;
    adsense?: IdOption;
}
declare const _default: (html: string, options?: AmpifyOptions | undefined) => string;
/**
 * @param {string} html - a Html string
 * @param {Object} html - a n options {analytics: {id}, adsense: {id}}
 *
 */
export default _default;
