import React from 'react';
import { Sticker } from '../../../../types/story.types';
export interface LinkStickerProps {
    sticker: Sticker;
    linkClicked: (linkUrl: string) => void;
    clickable: boolean;
    show: boolean;
}
export declare const LinkSticker: React.FC<LinkStickerProps>;
