import React from "react"; export interface CustomProps { "data-tip"?: string; "data-for"?: string; } declare const Control: (customProps: CustomProps) => ({ children, ...props }: { [x: string]: any; children: any; }) => React.JSX.Element; export default Control;