import { DetailedHTMLProps, ImgHTMLAttributes } from 'react';
export type CDNAssetProps = {
    directory: string;
    filename: string;
} & DetailedHTMLProps<ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>;
export declare const CDNAsset: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<{
    directory: string;
    filename: string;
} & import("react").ClassAttributes<HTMLImageElement> & ImgHTMLAttributes<HTMLImageElement>, never>> & string & Omit<({ directory, filename, ...props }: CDNAssetProps) => import("react/jsx-runtime").JSX.Element, keyof import("react").Component<any, {}, any>>;
