import type { IColor } from "../../../../Core/Interfaces/Colors";
/**
 * @category Options
 */
export interface ILinksShadow {
    blur: number;
    color: string | IColor;
    enable: boolean;
}
