export declare class InnerShadow { /** * Specifies color for the inner shadow. */ color: string; /** * Horizontal offset. * * Default to `0`. */ offsetX: number; /** * Vertical offset. * * Default to `0`. */ offsetY: number; /** * The larger this value, the bigger the blur, so the shadow becomes bigger and lighter. * Negative values are not allowed. * * Default to `0`. */ blurRadius: number; constructor(props?: Partial); }