export interface ThirdPartyLogoProps {
    url: string;
    size?: string;
    isDisabled?: boolean;
    className?: string;
    isSquare?: boolean;
}
export declare function ThirdPartyLogo({ url, size, isDisabled, className, isSquare }: ThirdPartyLogoProps): import("react/jsx-runtime").JSX.Element;
