import { LogoProps } from './Logo'; declare const useLogo: () => { getImageModule: (variant: LogoProps["variant"], mode: string, withoutText: LogoProps["withoutText"]) => Promise; getShapeBackgroundColor: (shapeBackgroundColor: LogoProps["shapeBackgroundColor"]) => NonNullable; getShapeColor: (colorShape: LogoProps["colorShape"]) => NonNullable; getSize: ({ variant, width, height, withoutText, }: { variant: LogoProps["variant"]; width: LogoProps["width"]; height: LogoProps["height"]; withoutText: LogoProps["withoutText"]; }) => { height: string | number; width: string | number; }; getTextColor: (color: LogoProps["color"]) => NonNullable; }; export default useLogo;