import * as React from "react";
import type { Props, Size, Carrier } from "./types";
type WrapperProps = {
    carriers: Carrier[];
    size: Size;
    inlineStacked?: boolean;
} & React.HTMLAttributes<HTMLDivElement>;
export declare const CarrierLogoWrapper: React.FC<WrapperProps>;
declare const CarrierLogo: ({ size, carriers, dataTest, id, rounded, inlineStacked, }: Props) => React.JSX.Element;
export default CarrierLogo;
