import type * as React from "react";
import type { Option, Props as Properties } from "../types";
export interface Props extends Option {
    readonly onChange: Properties["onChange"];
    readonly onFocus?: Properties["onFocus"];
    readonly setTooltipShown: (shown: boolean) => void;
}
declare const SwitchSegment: React.FunctionComponent<Props>;
export default SwitchSegment;
//# sourceMappingURL=types.d.ts.map