import { GradientStorageConfig } from '~/types/shared/GradientStorage'; import { GradientManagerProps } from '../GradientManagerProps'; export interface GradientManagerWithStorageProps extends Omit { /** A storage configuration object. If `storageKey` is not provided, the default key is used. That would mean that the DC apps would share the same custom gradients list ``` { userId: number | string; storageKey?: string; onFetchError?: (error: any) => void; onUpdateError?: (error: any) => void; } ``` */ storageConfig: GradientStorageConfig; } //# sourceMappingURL=GradientManagerWithStorageProps.d.ts.map