import { DocumentIoType } from "kryo/types/document"; import { Uint5 } from "semantic-types"; import { Sfixed16P16 } from "../fixed-point/sfixed16p16"; import { Sfixed8P8 } from "../fixed-point/sfixed8p8"; import { StraightSRgba8 } from "../straight-s-rgba8"; import { FilterType } from "./_type"; export interface DropShadow { filter: FilterType.DropShadow; color: StraightSRgba8; blurX: Sfixed16P16; blurY: Sfixed16P16; angle: Sfixed16P16; distance: Sfixed16P16; strength: Sfixed8P8; inner: boolean; knockout: boolean; compositeSource: boolean; passes: Uint5; } export declare const $DropShadow: DocumentIoType;