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