/**
 * Interface for the options that define the behavior and
 * appearance of the outline create tag.
 *
 * @interface
 */
export interface IOutlineCreateTagOptions {
    /**
     * Text color as hexadecimal number.
     * @default 0xFFFFFF
     */
    color?: number;
}

export default IOutlineCreateTagOptions;
