import type { ReactElement } from 'react';
export declare type DropShadowProps = {
    id: string;
    blurIn?: 'SourceAlpha' | 'SourceGraphic' | 'BackgroundImage' | 'BackgroundAlpha' | 'FillPaint' | 'StrokePaint';
    blurDeviation?: number;
    dx?: number;
    dy?: number;
};
export declare function DropShadow({ id, dx, dy, blurDeviation, blurIn }: DropShadowProps): ReactElement;
