import { BrandColors, PictoColors, Sizes } from "./Logo.constants.js";
import { AllHTMLAttributes } from "react";

//#region src/components/Logo/Logo.types.d.ts
interface LogoProps extends Omit<AllHTMLAttributes<HTMLOrSVGElement>, 'size'> {
  brandVariant?: keyof typeof BrandColors;
  pictoVariant?: keyof typeof PictoColors;
  size?: `${Sizes}`;
}
//#endregion
export { LogoProps };
//# sourceMappingURL=Logo.types.d.ts.map