import { BoxProps } from "../box/box.types.js";
//#region src/logo/logo.types.d.ts
type LogoData = {
  /** Brand name. */
  brand?: 'veracity' | 'dnv';
  /** Loads logo svg from the given source. */
  src?: string;
  /** Renders logo wrapper as a link with given url as href. */
  url?: string;
  styles?: {
    container?: BoxProps;
    svg?: BoxProps;
  };
};
type LogoProps = BoxProps & LogoData;
//#endregion
export { LogoData, LogoProps };

//# sourceMappingURL=logo.types.d.ts.map