import { Clip } from '../../row/components/list/models/clip'; interface RedirectToUrlParams { url: string; openInNewTab?: boolean; } export declare const redirectToUrl: ({ url, openInNewTab, }: RedirectToUrlParams) => void; declare const useClipActions: ({ clip, clipIndex, collection, onClose, }: { clip: Clip; clipIndex: number; collection: string; onClose?: (() => void) | undefined; }) => { onPrimaryAction: (event: React.MouseEvent) => void; onSecondaryAction: (event: React.MouseEvent) => void; primaryActionText: string | null | undefined; secondaryActionText: string | null | undefined; }; export default useClipActions;