/// interface IAction { title: string; onClick: (dropdownOpts: { closeDropdown: () => void; }) => void; } interface IFileActionsProps { moreActions?: IAction[]; isSquared?: boolean; isOwner?: boolean; downloadUrl?: string | null; } declare function FileActions({ moreActions, downloadUrl, isSquared, isOwner, }: IFileActionsProps): JSX.Element; export default FileActions;