import { TruncateStringProps } from '@snack-uikit/truncate-string'; import { WithSupportProps } from '@snack-uikit/utils'; type TruncateProps = { option?: number; description?: number; variant?: TruncateStringProps['variant']; }; export type ItemContentProps = WithSupportProps<{ option: string | number; caption?: string; description?: string; truncate?: TruncateProps; disabled?: boolean; className?: string; }>; export declare function ItemContent({ truncate: truncateProp, caption, description, option, className, disabled, ...rest }: ItemContentProps): import("react/jsx-runtime").JSX.Element; export {};