declare const options: {
    size: ("small" | "medium" | "large")[];
};
export type KendoColumnMenuMulticheckItemOptions = {
    size?: (typeof options.size)[number] | null;
};
export type KendoColumnMenuMulticheckItemProps = KendoColumnMenuMulticheckItemOptions & {
    text: string;
};
export declare const ColumnMenuMulticheckItem: {
    (props: KendoColumnMenuMulticheckItemProps & React.HTMLAttributes<HTMLLIElement>): import("react/jsx-runtime").JSX.Element;
    states: any[];
    options: {
        size: ("small" | "medium" | "large")[];
    };
    defaultOptions: {
        size: "medium";
    };
};
export default ColumnMenuMulticheckItem;
