import { ReactNode } from 'react'; import { MoreActionsProps } from '../../../helperComponents/MoreActions/index.js'; type BuildMobileOverflowActionsParams = { onRefresh?: () => void; after?: ReactNode; moreActions?: MoreActionsProps['moreActions']; refreshLabel: string; }; export declare function buildMobileOverflowActions({ onRefresh, after, moreActions, refreshLabel, }: BuildMobileOverflowActionsParams): MoreActionsProps['moreActions']; export {};