///
import * as PropTypes from "prop-types";
export interface ExpandControlProps extends React.HTMLProps {
ref?: any;
state?: any;
expandId: string;
staticState?: boolean;
activeOnMount?: boolean;
activeClassName?: string;
triggerEvent?: "hover" | "click";
}
export declare const ExpandControlPropTypes: {
[T in keyof ExpandControlProps]: PropTypes.Validator;
};
export declare const ExpandControlDefaultProps: {
[T in keyof ExpandControlProps]?: ExpandControlProps[T];
};