import type { TableSelectProps } from "./table-select"; interface Options { props: TableSelectProps; } export default function useTableHeight(options: Options): { tableHeight: any; searcherRef: any; }; export {};