import { default as React } from 'react'; import { TransparentVideoFilterEffect } from '../TransparentVideo.types'; import { Translations } from './translation'; interface PanelViewCustomProps { onBackClick: () => void; onCustomFieldChange: (updatedData: TransparentVideoFilterEffect) => void; customFilterEffectData: TransparentVideoFilterEffect; onCustomPresetSelected: (p: TransparentVideoFilterEffect) => void; translations: Translations; } export declare const PanelViewCustom: React.MemoExoticComponent<(props: PanelViewCustomProps) => React.JSX.Element>; export {};