UNPKG

@hhgtech/hhg-components

Version:
11 lines (10 loc) 516 B
import React from 'react'; import { SocialLinkDataType } from "../createNewPostContent/type"; export type Props = { bannedWords?: string[]; socialLinkData?: SocialLinkDataType | null; onInvalidUrlsChange?: (v: string[]) => void; onSocialLinkChanged?: (data?: SocialLinkDataType | null) => void; onChange?: (val: string) => void; }; export declare const PostVideoReview: ({ socialLinkData, bannedWords, onChange, onInvalidUrlsChange, onSocialLinkChanged, }: Props) => React.JSX.Element;