declare const states: ("active" | "focus" | "disabled" | "hover")[];
export type KendoFloatingActionButtonItemProps = {
    align?: 'left' | 'right';
    text?: string;
    icon?: string;
};
export type KendoFloatingActionButtonItemState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const FloatingActionButtonItem: {
    (props: KendoFloatingActionButtonItemProps & KendoFloatingActionButtonItemState & React.HTMLAttributes<HTMLLIElement>): import("react/jsx-runtime").JSX.Element;
    states: ("active" | "focus" | "disabled" | "hover")[];
};
export {};
