export default function getYoutubeVideoID(url: string): {
    isValid: boolean;
    id: string | null | undefined;
};
