import type { BaseConfig, BaseProps } from '@studiometa/js-toolkit'; import { DataBind } from './DataBind.js'; import type { DataBindProps } from './DataBind.js'; export interface DataEffectProps extends DataBindProps { $options: { effect: string; } & DataBindProps['$options']; } export declare class DataEffect extends DataBind { static config: BaseConfig; get effect(): Function; set(value: boolean | string | string[]): void; }