export declare const ACTIONSHEETITEM_CLASSNAME = "k-actionsheet-item";
declare const states: ("focus" | "disabled" | "selected" | "hover")[];
export type KendoActionSheetItemProps = {
    /**
     * Primary text label for the action item.
     */
    text?: string;
    /**
     * Secondary description text.
     */
    description?: string;
    /**
     * Icon name to display.
     */
    iconName?: string;
};
export type KendoActionSheetItemState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const ActionSheetItem: {
    (props: KendoActionSheetItemProps & KendoActionSheetItemState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    states: ("focus" | "disabled" | "selected" | "hover")[];
    className: string;
};
export default ActionSheetItem;
