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;
