import { type ComponentPropsWithoutRef } from 'react'; import { type VariantProps } from 'tailwind-variants'; type AbstractProps = { /** コンポーネントのタイトル */ alt?: string; /** コンポーネントの幅 */ width?: number | string; /** コンポーネントの高さ */ height?: number | string; } & VariantProps; type Props = AbstractProps & Omit, keyof AbstractProps>; declare const classNameGenerator: import("tailwind-variants").TVReturnType<{ fill: { white: string; brand: string; black: string; }; }, undefined, string[], import("tailwind-variants/dist/config").TVConfig<{ fill: { white: string; brand: string; black: string; }; }, { fill: { white: string; brand: string; black: string; }; }>, { fill: { white: string; brand: string; black: string; }; }, undefined, import("tailwind-variants").TVReturnType<{ fill: { white: string; brand: string; black: string; }; }, undefined, string[], import("tailwind-variants/dist/config").TVConfig<{ fill: { white: string; brand: string; black: string; }; }, { fill: { white: string; brand: string; black: string; }; }>, unknown, unknown, undefined>>; export declare const SmartHRLogo: import("react").NamedExoticComponent; export {};