import * as React from 'react';
declare const states: ("focus" | "disabled" | "hover")[];
export type KendoExpansionPanelProps = {
    title?: string;
    subtitle?: string;
    expanded?: boolean;
    dir?: 'ltr' | 'rtl';
    contentStyle?: React.CSSProperties;
};
export type KendoExpansionPanelState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const ExpansionPanel: {
    (props: KendoExpansionPanelProps & KendoExpansionPanelState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    states: ("focus" | "disabled" | "hover")[];
    options: {};
    className: string;
    defaultOptions: {};
};
export default ExpansionPanel;
