export declare function parsePollUrl({ pollUrl }: {
    pollUrl: string;
}): {
    pollId?: string;
} | null;
