import { default as React } from 'react';
export interface ImagePlaceholderProps {
    src?: string;
    alt?: string;
    device?: 'mobile' | 'tablet' | 'desktop';
    customSize?: {
        width?: string;
        height?: string;
    };
}
export declare const ImagePlaceholder: React.FC<ImagePlaceholderProps>;
export default ImagePlaceholder;
