import * as React from 'react'; export interface BrandProps extends React.DetailedHTMLProps, HTMLImageElement> { /** Transforms the Brand into a element from an element. Container for child elements. */ children?: React.ReactNode; /** Additional classes added to the either type of Brand. */ className?: string; /** Attribute that specifies the URL of a Brand. For a Brand this specifies the fallback URL. */ src?: string; /** Attribute that specifies the alt text of a Brand. For a Brand this specifies the fallback alt text. */ alt: string; /** Widths at various breakpoints for a Brand. */ widths?: { default?: string; sm?: string; md?: string; lg?: string; xl?: string; '2xl'?: string; }; /** Heights at various breakpoints for a Brand. */ heights?: { default?: string; sm?: string; md?: string; lg?: string; xl?: string; '2xl'?: string; }; } export declare const Brand: React.FunctionComponent; //# sourceMappingURL=Brand.d.ts.map