frontend/.pnpm-store/v3/files/71/0cc9677fc3ea77b0cd540bd324c885469fd3512b198a6b97eecf65f142922aacccdaef815f28e7bae88c17abd6a376662b8073c19d12a9c4c48df7d5e4206f

14 lines
431 B
Plaintext

import { Component, h, RefObject } from 'preact';
import { BaseComponent, BaseProps } from '../base';
interface ShadowTableProps extends BaseProps {
tableRef?: RefObject<Component>;
}
/**
* ShadowTable renders a hidden table and is used to calculate the column's width
* when autoWidth option is enabled
*/
export declare class ShadowTable extends BaseComponent<ShadowTableProps, {}> {
render(): h.JSX.Element;
}
export {};