import type { Theme } from "../../../../interfaces/general/index.ts"; import type { Adaptive } from "../../../../interfaces/general/tools/index.ts"; export type FlatValuesObject = { [key: string]: string | number; }; export type AdaptiveValuesObject = { auto: FlatValuesObject; regular: FlatValuesObject; } & { [key in keyof Exclude, 'regular'>]?: FlatValuesObject; }; interface Params { theme: T; } interface ReturnValues { flatValues: FlatValuesObject; adaptiveValues: AdaptiveValuesObject; } export declare function accumulateValues({ theme }: Params): ReturnValues; export { };