import { AccessorFunction } from './typings'; /** * Handle cases where the user specifies an accessor string instead of an accessor function. * * @param functionOrString accessor string/function to be made an accessor function * @returns accessor function */ export declare function makeAccessorFunction(functionOrString: AccessorFunction | string): AccessorFunction; /** * Generate a random id. * Used to create ids for clip paths, which need to be referenced by id. * * @returns random id string. */ export declare function randomId(): string;