@hhgtech/hhg-components
Version:
Hello Health Group common components
9 lines (8 loc) • 375 B
TypeScript
import React from 'react';
import { SocialLinkDataType } from "../createNewPostContent/type";
export type Props = {
isMobile?: boolean;
socialLinkData?: SocialLinkDataType | null;
setSocialLinkData?: (data?: SocialLinkDataType | null) => void;
};
export declare const CreatePostVideo: ({ socialLinkData, setSocialLinkData, }: Props) => React.JSX.Element;