import type { WithTake } from './interfaces/ITakeChain'; import type { Takeable } from './interfaces/Takeable'; /** * A function that takes an initial value and returns a proxy object with chainable methods. * * @param {*} initialValue - The initial value. * @returns {Proxy>} - A proxy object with a `take` method. * @deprecated [🤡] Use some better functional library instead of `TakeChain` * * @private util of `@promptbook/color` */ export declare function take(initialValue: TValue): WithTake;