import { type ItemStyleProps } from '../../types'; export interface ItemStyles { classProps: { helperText: string; icon: { root: string; start: string; end: string; }; label: string; root: string; }; props: ItemStyleProps; } export declare function useItemStyleProps

(props: P): ItemStyles;