export interface ModerationOptions {
    /**
     * How long the moderation effect should stay active before being disabled.
     * Set to `0` to keep it active indefinitely. Defaults to 5000 ms.
     */
    duration?: number;
}
export declare const useModeration: (options?: ModerationOptions) => void;
