/**
 * The options for the thumbnail.
 */
export interface ThumbailOptions {
    /**
     * The width of the thumbnail.
     */
    width?: number;
    /**
     * The height of the thumbnail.
     */
    height?: number;
}
