import type { MaybeRefOrGetter } from 'vue'; import type { AvatarProps, IconComponent } from '../types'; export interface UseComponentIconsProps { /** * Display an icon on the left side. * @IconComponent */ icon?: IconComponent; /** Display an avatar on the left side. */ avatar?: AvatarProps; /** When `true`, the loading icon will be displayed. */ loading?: boolean; /** When `true`, the icon will be displayed on the right side. */ trailing?: boolean; /** * Display an icon on the right side. * @IconComponent */ trailingIcon?: IconComponent; } export declare function useComponentIcons(componentProps: MaybeRefOrGetter): { isLeading: import("vue").ComputedRef; isTrailing: import("vue").ComputedRef; leadingIconName: import("vue").ComputedRef; trailingIconName: import("vue").ComputedRef; };