interface GiphyContainerProps { onClickBack: () => void; onSelectGif: (selectedGif: { id: string; url: string; gifUrl: string; gifPreviewUrl: string; altText: string | undefined; aspectRatio: number; }) => void; visible: boolean; } export default function GiphyContainer({ onClickBack, onSelectGif, visible, }: GiphyContainerProps): import("react/jsx-runtime").JSX.Element; export {};