import { TableConfig } from '../../core/types/table.types'; import { Nullable } from "../../core/utils/nullable"; interface Props { initial: boolean; } interface State { config: TableConfig; } declare const defaultProps: Props; declare const defaultState: State; declare const generateStyles: () => string; declare const generateTemplate: (props: Nullable, state: Nullable) => string; export { defaultProps, defaultState, generateStyles, generateTemplate, Props, State };