/**
 * Check if passed content includes only inline elements
 * @param data - element or html string
 * @returns true if data contains only inline elements, false otherwise
 */
export declare function containsOnlyInlineElements(data: string | HTMLElement): boolean;
