export declare const DOCKINDICATOR_CLASSNAME = "k-dock-indicator";
declare const states: ("disabled" | "hover")[];
export type KendoDockIndicatorProps = {
    position?: "top" | "bottom" | "right" | "left" | "middle";
};
export type KendoDockIndicatorState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const DockIndicator: {
    (props: KendoDockIndicatorProps & KendoDockIndicatorState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    states: ("disabled" | "hover")[];
    options: {};
    className: string;
    defaultOptions: {
        position: string;
    };
};
export default DockIndicator;
