<?php
/**
 * Interface HasCaption
 *
 * @package AmpProject\AmpWP
 */

namespace AmpProject\AmpWP\Component;

/**
 * Interface HasCaption
 *
 * @internal
 * @since 1.5.0
 */
interface HasCaption {

	/**
	 * Gets the caption.
	 *
	 * @return string The caption text.
	 */
	public function get_caption();
}
