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