import { Theme } from '@table-library/react-table-library/types/theme'; declare type Configuration = { isVirtualized?: boolean; }; declare type ConfigurationSound = Required; declare type Options = { horizontalSpacing?: number; verticalSpacing?: number; striped?: boolean; highlightOnHover?: boolean; }; declare type OptionsSound = Required; export declare const DEFAULT_OPTIONS: OptionsSound; export declare const DEFAULT_CONFIGURATION: ConfigurationSound; export declare const getTheme: (options?: Options | undefined, configuration?: Configuration | undefined) => Theme; export {};