import { TransparentVideoBuilderProps, TransparentVideoFilterEffect } from './TransparentVideo.types'; export declare const getFilterEffectString: (id: string, filterEffect?: TransparentVideoFilterEffect) => string; export declare const formatPosterUrl: (uri: string, width?: number, height?: number) => string | undefined; export declare const SVG_FILTER_ID_PREFIX = "svg_filter_"; export declare const replaceCompIdPlaceholder: (str: string, compId: string) => string; export declare const getActiveFilterEffect: (props: Partial) => TransparentVideoFilterEffect | undefined; export declare const getFilterEffectData: (props: Partial) => TransparentVideoFilterEffect; export declare const closeSelfClosingSvgTags: (svg: string) => string;