7 lines
361 B
TypeScript
7 lines
361 B
TypeScript
|
|
import { IWithObservationProps } from "../with-observation";
|
||
|
|
export interface IWithBlurVideoPlayerProps extends IWithObservationProps {
|
||
|
|
withBlur?: boolean;
|
||
|
|
}
|
||
|
|
declare const WithBlur: ({ withBlur, onReady, children, ...props }: IWithBlurVideoPlayerProps) => import("react/jsx-runtime").JSX.Element;
|
||
|
|
export default WithBlur;
|
||
|
|
//# sourceMappingURL=index.d.ts.map
|